Repository: qpid-proton Updated Branches: refs/heads/master 6136f1125 -> 6517a8891
handle tail closed event for transport Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/6517a889 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/6517a889 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/6517a889 Branch: refs/heads/master Commit: 6517a8891926cc03d0c283b11f0ef30527b58538 Parents: 6136f11 Author: Gordon Sim <[email protected]> Authored: Thu Feb 12 18:01:07 2015 +0000 Committer: Gordon Sim <[email protected]> Committed: Thu Feb 12 18:01:07 2015 +0000 ---------------------------------------------------------------------- proton-c/bindings/python/proton/reactors.py | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/6517a889/proton-c/bindings/python/proton/reactors.py ---------------------------------------------------------------------- diff --git a/proton-c/bindings/python/proton/reactors.py b/proton-c/bindings/python/proton/reactors.py index 8b4c532..baf92bf 100644 --- a/proton-c/bindings/python/proton/reactors.py +++ b/proton-c/bindings/python/proton/reactors.py @@ -505,6 +505,9 @@ class Connector(Handler): self.reconnect.reset() self.transport = None + def on_transport_tail_closed(self, event): + self.on_transport_closed(event) + def on_transport_closed(self, event): if self.connection and self.connection.state & Endpoint.LOCAL_ACTIVE: if self.reconnect: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
