From 1ddbee45e8059e1eb64d94526a6abb8e396643ac Mon Sep 17 00:00:00 2001 From: Gordon Sim Date: Fri, 9 Feb 2007 17:51:35 +0000 Subject: * qpid/client.py - added channel_pong handler to delegate * tests/broker.py - simple ping/pong test * tests/queue.py - queue_unbind tests for all standard exchanges git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@505388 13f79535-47bb-0310-9956-ffa450edef68 --- python/qpid/client.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/qpid/client.py') diff --git a/python/qpid/client.py b/python/qpid/client.py index a8412e5519..ed7dbca5d2 100644 --- a/python/qpid/client.py +++ b/python/qpid/client.py @@ -128,6 +128,9 @@ class ClientDelegate(Delegate): def basic_deliver(self, ch, msg): self.client.queue(msg.consumer_tag).put(msg) + def channel_pong(self, ch, msg): + msg.ok() + def channel_close(self, ch, msg): ch.close(msg) -- cgit v1.2.1