summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2007-10-29 16:13:21 +0000
committerKim van der Riet <kpvdr@apache.org>2007-10-29 16:13:21 +0000
commit0276d542a50b079a94132b2532b5cd016853006b (patch)
tree1e2949f5d27ac87b2843618d102eed27aa2c8d87
parentaf861580a5d3c68d15c11243a5252955ef08003a (diff)
downloadqpid-python-0276d542a50b079a94132b2532b5cd016853006b.tar.gz
Added empty stub in client.py for handling session acks
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@589711 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--python/qpid/client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qpid/client.py b/python/qpid/client.py
index f0d7935283..37df8f272a 100644
--- a/python/qpid/client.py
+++ b/python/qpid/client.py
@@ -138,6 +138,9 @@ class ClientDelegate(Delegate):
def channel_close(self, ch, msg):
ch.close(msg)
+ def session_ack(self, ch, msg):
+ pass
+
def session_closed(self, ch, msg):
ch.close(msg)