diff options
author | Rafael H. Schloming <rhs@apache.org> | 2009-06-08 14:11:28 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2009-06-08 14:11:28 +0000 |
commit | a811f1b32a6d3e1b9a39c36829ac6847ed6d8e42 (patch) | |
tree | f3094cc8501b592b1f6cf84e90e126558e9fbf2f /python | |
parent | 54c6c03da9ff855c52603ed1c534e1214cdd84a3 (diff) | |
download | qpid-python-a811f1b32a6d3e1b9a39c36829ac6847ed6d8e42.tar.gz |
make the client delegate echo heartbeats
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@782639 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python')
-rw-r--r-- | python/qpid/delegates.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qpid/delegates.py b/python/qpid/delegates.py index a720e2e1c7..82bbe67ede 100644 --- a/python/qpid/delegates.py +++ b/python/qpid/delegates.py @@ -170,3 +170,6 @@ class Client(Delegate): def connection_open_ok(self, ch, open_ok): self.connection.opened = True notify(self.connection.condition) + + def connection_heartbeat(self, ch, hrt): + ch.connection_heartbeat() |