diff options
author | Rafael H. Schloming <rhs@apache.org> | 2010-03-30 14:34:13 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2010-03-30 14:34:13 +0000 |
commit | abac16b3e87b66e40acade7d3de23f9d7ac20aa5 (patch) | |
tree | 8088f1ee8e3b09a11c560b64f468d0150b26f6c5 /python/qpid/messaging/endpoints.py | |
parent | 849df0c69c5068a6557a5aac8bfce68c3f4ad4af (diff) | |
download | qpid-python-abac16b3e87b66e40acade7d3de23f9d7ac20aa5.tar.gz |
updated address docs
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929155 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/messaging/endpoints.py')
-rw-r--r-- | python/qpid/messaging/endpoints.py | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py index 195c6e7ef7..3a23cd6e28 100644 --- a/python/qpid/messaging/endpoints.py +++ b/python/qpid/messaging/endpoints.py @@ -294,22 +294,23 @@ class Session: The options map permits the following parameters:: <name> [ / <subject> ] ; { - create: <create-policy>, - delete: <delete-policy>, - assert: <assert-policy>, + create: always | sender | receiver | never, + delete: always | sender | receiver | never, + assert: always | sender | receiver | never, + mode: browse | consume, node: { - type: <node-type>, - durable: <node-durability>, - x-declare: { ... <queue-declare overrides> ... } + type: queue | topic, + durable: True | False, + x-declare: { ... <declare-overrides> ... }, x-bindings: [<binding_1>, ... <binding_n>] - } + }, link: { name: <link-name>, - durable: <link-durability>, - reliability: <link-reliability>, - x-declare: { ... <queue-declare overrides> ... } - x-bindings: [<binding_1>, ... <binding_n>] - x-subscribe: { ... <message-subscribe overrides> ... } + durable: True | False, + reliability: unreliable | at-most-once | at-least-once | exactly-once, + x-declare: { ... <declare-overrides> ... }, + x-bindings: [<binding_1>, ... <binding_n>], + x-subscribe: { ... <subscribe-overrides> ... } } } @@ -337,8 +338,9 @@ class Session: - I{queue}: this is the default node-type The x-declare map permits protocol specific keys and values to be - specified. These keys and values are passed through when creating a - node or asserting facts about an existing node. + specified when exchanges or queues are declared. These keys and + values are passed through when creating a node or asserting facts + about an existing node. Examples -------- |