You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2010/03/30 16:34:13 UTC

svn commit: r929155 - /qpid/trunk/qpid/python/qpid/messaging/endpoints.py

Author: rhs
Date: Tue Mar 30 14:34:13 2010
New Revision: 929155

URL: http://svn.apache.org/viewvc?rev=929155&view=rev
Log:
updated address docs

Modified:
    qpid/trunk/qpid/python/qpid/messaging/endpoints.py

Modified: qpid/trunk/qpid/python/qpid/messaging/endpoints.py
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qpid/messaging/endpoints.py?rev=929155&r1=929154&r2=929155&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qpid/messaging/endpoints.py (original)
+++ qpid/trunk/qpid/python/qpid/messaging/endpoints.py Tue Mar 30 14:34:13 2010
@@ -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
   --------



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org