PROTON-928: proton-j: Add two missing reactor methods
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/5f664ad5 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/5f664ad5 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/5f664ad5 Branch: refs/heads/cjansen-cpp-client Commit: 5f664ad57d8c42572f5c4e8c18d73fc5520224af Parents: ca47d72 Author: Bozo Dragojevic <bo...@digiverse.si> Authored: Mon Jun 29 12:54:16 2015 +0200 Committer: Bozo Dragojevic <bo...@digiverse.si> Committed: Thu Jul 9 12:18:45 2015 +0200 ---------------------------------------------------------------------- proton-j/src/main/resources/creactor.py | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/5f664ad5/proton-j/src/main/resources/creactor.py ---------------------------------------------------------------------- diff --git a/proton-j/src/main/resources/creactor.py b/proton-j/src/main/resources/creactor.py index 1f8514e..9de7662 100644 --- a/proton-j/src/main/resources/creactor.py +++ b/proton-j/src/main/resources/creactor.py @@ -56,6 +56,10 @@ def pn_reactor_connection(r, h): return wrap(r.connection(h), pn_connection_wrapper) def pn_reactor_acceptor(r, host, port, handler): return r.acceptor(host, int(port), handler) +def pn_reactor_mark(r): + return r.mark() +def pn_reactor_wakeup(r): + return r.wakeup() def pn_handler_add(h, c): h.add(c) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org