@@ -58,26 +58,28 @@ protocol variant. At the time of writing, the library supports:
5858
5959 - [code Protocols.DefaultProtocol]: An alias to one of the other
6060 protocols. At the time of writing, [b the default protocol is [code
61- AMQP_0_8 ]].
61+ AMQP_0_9_1 ]].
6262
63- - [code Protocols.AMQP_0_8]: Standard, unmodified AMQP 0-8 protocol,
64- including [code access.request].
63+ - [code Protocols.AMQP_0_8]: Standard AMQP 0-8 protocol, including
64+ [code access.request], [code basic.recover-async] and [code queue.unbind ].
6565
6666 - [code Protocols.AMQP_0_8_QPID]: AMQP 0-8 as extended by QPid's 0-8
6767 M1 release, without [code access.request] and with extra parameters
6868 available on certain methods.
6969
70- - [code Protocols.AMQP_0_9]: Standard, unmodified AMQP 0-9 protocol,
71- including [code access.request], but excluding the [code Message]
72- content-class and other areas of the specification marked "work in
73- progress".
70+ - [code Protocols.AMQP_0_9]: Standard AMQP 0-9 protocol, including
71+ [code access.request] and [code basic.recover-async], but excluding
72+ the [code Message] content-class and other areas of the specification
73+ marked "work in progress".
74+
75+ - [code Protocols.AMQP_0_9_1]: Standard AMQP 0-9-1 protocol.
7476
7577The [code Protocols] class also contains some convenience functions
7678for retrieving an IProtocol from a string, from the environment or
7779from a .NET XML configuration file. The protocol names permitted are
7880the same as the static instance variables on class [code Protocols],
79- that is, [code AMQP_0_8], [code AMQP_0_8_QPID], [code AMQP_0_9], and
80- [code DefaultProtocol].
81+ that is, [code AMQP_0_8], [code AMQP_0_8_QPID], [code AMQP_0_9],
82+ [code AMQP_0_9_1] and [code DefaultProtocol].
8183
8284The following code binds [code p] to the [code Protocols.AMQP_0_9]
8385instance by looking it up dynamically:
@@ -131,7 +133,7 @@ All factory properties have default values. The default value for a property wil
131133 - username: [code "guest"]
132134 - password: [code "guest"]
133135 - virtual-host: [code "/"]
134- - protocol: [code AMQP 0.8 ]
136+ - protocol: [code AMQP 0-9-1 ]
135137 - hostname: [code localhost]
136138 - port: [code 5672]
137139
0 commit comments