NO-JIRA: update README for python examples to describe some of the recent additions
Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/e65496a1 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/e65496a1 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/e65496a1 Branch: refs/heads/rajith-codec Commit: e65496a1200b76b866af7469300bff22aa149671 Parents: 1e4118f Author: Gordon Sim <[email protected]> Authored: Wed May 6 18:28:53 2015 +0100 Committer: Gordon Sim <[email protected]> Committed: Wed May 6 22:31:31 2015 +0100 ---------------------------------------------------------------------- examples/python/README | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/e65496a1/examples/python/README ---------------------------------------------------------------------- diff --git a/examples/python/README b/examples/python/README index f388962..40e7910 100644 --- a/examples/python/README +++ b/examples/python/README @@ -101,6 +101,19 @@ will commit it. The various send/recv examples can be mixed and matched if desired. +direct_send.py + +An example that accepts incoming links and connections over which it +will then send out messages. Can be used with simple_recv.py or +db_recv.py for direct, non-intermediated communication. + +direct_recv.py + +An example that accepts incoming links and connections over which it +will then receive messages, printing out the content. Can be used with +simple_send.py or db_send.py for direct, non-intermediated +communication. + ------------------------------------------------------------------- client.py @@ -131,6 +144,15 @@ server_tx.py A variant of the server part that consumes the request and sends out the response atomically in a local transaction. +direct_server.py + +A variant of the server part of a request-response example, that +accepts incoming connections and does not need an intermediary. Much +like the original server, it receives incoming requests, converts the +body to uppercase and sends the result back to the indicated reply +address. Can be used in conjunction with any of the client +alternatives. + ------------------------------------------------------------------- selected_recv.py --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
