diff options
author | Robert Greig <rgreig@apache.org> | 2006-12-15 14:26:54 +0000 |
---|---|---|
committer | Robert Greig <rgreig@apache.org> | 2006-12-15 14:26:54 +0000 |
commit | 8175edfb428e91557b22d8bc6dd8fd3aa40c63bb (patch) | |
tree | a59f4f2ad8ac8aa6a8166765fd6b2c942d67b61e | |
parent | 75793016c7cc8fc156411041e4399243aadc563e (diff) | |
download | qpid-python-8175edfb428e91557b22d8bc6dd8fd3aa40c63bb.tar.gz |
QPID-183 Patch supplied by Rob Godfrey. Major changes to durable topic subscription handling.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@487566 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | specs/amqp-8.0.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/specs/amqp-8.0.xml b/specs/amqp-8.0.xml index 6b3a438f08..a9a9b21ecc 100644 --- a/specs/amqp-8.0.xml +++ b/specs/amqp-8.0.xml @@ -1352,7 +1352,27 @@ localised reply text </doc> <chassis name="client" implement="MUST"/> </method> + + <method name="bound" synchronous="1" index="22"> + <field name="exchange" domain="exchange name"/> + <field name = "routing key" type = "shortstr"> + Message routing key + <doc> + Specifies the routing key for the message. The routing key is + used for routing messages depending on the exchange configuration. + </doc> + </field> + <field name = "queue" domain = "queue name"/> + </method> + + <method name="bound-ok" synchronous="1" index="23"> + <field name="reply code" domain="reply code"/> + <field name="reply text" domain="reply text"/> + </method> + </class> + + <class name="queue" handler="channel" index="50"> <!-- ====================================================== |