Rabbitmq Dotnet Client 2.7.1 User Guide
Rabbitmq Dotnet Client 2.7.1 User Guide
Table of Contents
1. UserGuide...............................................................................................................................................4 1.1. Introduction .................................................................................................................................4 1.2. AMQP dialects implemented ......................................................................................................4 2. ApiOverview...........................................................................................................................................4 2.1. Major namespaces, interfaces and classes ..................................................................................4 2.2. Multi-protocol support ................................................................................................................5 2.3. Connecting to a broker ................................................................................................................6 2.4. Disconnecting from a broker.......................................................................................................7 2.5. Using exchanges and queues.......................................................................................................7 2.6. Publishing messages ...................................................................................................................8 2.7. Retrieving individual messages...................................................................................................9 2.8. Retrieving messages by subscription ..........................................................................................9 2.9. Threading, deadlocks, and associated restrictions on consumers .............................................10 2.10. IModel should not be shared between threads ........................................................................11 2.11. Handling unroutable or undelivered messages........................................................................11 2.12. QPid-compatible JMS BytesMessage, StreamMessage, and MapMessage codecs................12 3. MessagingPatterns ...............................................................................................................................13 3.1. Common ways of working with AMQP ...................................................................................13 3.2. Point-to-point messaging ..........................................................................................................13 3.2.1. Synchronous, client-server remote procedure call (RPC) ............................................14 3.2.2. Asynchronous, one-way messaging .............................................................................16 3.2.3. Acknowledgment modes for point-to-point .................................................................16 3.2.4. Library support for point-to-point messaging ..............................................................17 3.3. Event broadcasting ....................................................................................................................19 3.3.1. Publishing events ..........................................................................................................19 3.3.2. Subscription..................................................................................................................20 3.3.3. Retrieving events - low-level approach ........................................................................20 3.3.4. Acknowledgment modes for event broadcasting..........................................................21 3.4. Responsibility transfer ..............................................................................................................21 3.5. Reliable message transfer..........................................................................................................22 3.5.1. At-least-once delivery...................................................................................................22 3.5.2. At-most-once delivery ..................................................................................................23 3.5.3. Exactly-once delivery ...................................................................................................23 3.6. Coding with high-availability AMQP server pairs....................................................................24 3.7. Interacting with external resources ...........................................................................................25
4. ShutdownProtocols ..............................................................................................................................26 4.1. General pattern of AMQP client shutdown...............................................................................26 4.2. Information about the circumstances of a shutdown.................................................................26 4.2.1. ShutdownInitiator .........................................................................................................26 4.2.2. ShutdownEventArgs .....................................................................................................27 4.3. The CloseReason properties, and idempotency of Close() calls...............................................27 4.4. Atomicity, and use of the IsOpen ags .....................................................................................27 4.5. Specic shutdown protocols .....................................................................................................28 4.5.1. IModel ..........................................................................................................................28 4.5.2. IConnection ..................................................................................................................29 4.5.3. ISession.........................................................................................................................29 5. TroubleShooting...................................................................................................................................29 5.1. Heartbeat issue with Mono 1.1.17.1 on Redhat FC6/x86-64....................................................30 6. Examples...............................................................................................................................................30 6.1. How to run examples.................................................................................................................30 6.2. Examples overview ...................................................................................................................30 6.2.1. AddClient .....................................................................................................................31 6.2.2. AddServer.....................................................................................................................31 6.2.3. DeclareQueue ...............................................................................................................31 6.2.4. ExceptionTest ...............................................................................................................31 6.2.5. LogTail..........................................................................................................................31 6.2.6. SendMap.......................................................................................................................31 6.2.7. SendString ....................................................................................................................32 6.2.8. SingleGet ......................................................................................................................32 7. BuildingTheClient................................................................................................................................32 7.1. Source Tree Layout ...................................................................................................................32 7.2. Build Prerequisites ....................................................................................................................33 7.3. Conguring Your Tree ..............................................................................................................33 7.4. Building.....................................................................................................................................33 7.4.1. On Windows, with Visual Studio .................................................................................33 7.4.2. On Windows, without Visual Studio ............................................................................34 7.4.3. On Linux, using Mono .................................................................................................34 7.5. Building the WCF binding ........................................................................................................34 7.6. Build Products...........................................................................................................................34 8. ImplementationGuide..........................................................................................................................35 8.1. Connections, Channels, Sessions and Models ..........................................................................35 8.2. Channel zero .............................................................................................................................36 8.3. Information dataow from the server to the client....................................................................36 8.4. Information dataow from the client to the server....................................................................37 8.5. Client-to-server AMQP RPC ....................................................................................................38 8.6. Constants from the specication ...............................................................................................39
9. ApiGen ..................................................................................................................................................39 9.1. Compilation Process Overview.................................................................................................40 9.2. Invoking Apigen........................................................................................................................41 9.3. Generated Classes .....................................................................................................................41 9.4. The Common Model .................................................................................................................45 9.4.1. The main model interface .............................................................................................45 9.4.2. Content header interfaces .............................................................................................45 9.4.3. Mapping methods to RPC requests ..............................................................................46 9.4.4. Mapping method parameters to RPC request elds .....................................................47 9.4.5. Mapping RPC responses to return values.....................................................................49 9.4.6. Mapping asynchronous events......................................................................................50 9.4.7. Overriding behaviour for particular specication versions ..........................................51
1. UserGuide
1.1. Introduction
The RabbitMQ .NET client is an implementation of an AMQP client library for C# (and, implicitly, other .NET languages), and a binding exposing AMQP services via Microsofts Windows Communication Foundation (WCF). This is the User Guide for the RabbitMQ .NET client library. It provides an overview of the codebase and the implemented API. The full details of the API are documented separately, in the NDocProc-generated javadoc-like HTML documentation.
2. ApiOverview
This section gives an overview of the RabbitMQ .NET client API. Only the basics of using the library are covered: for full detail, please see the javadoc-like API documentation generated from the source code.
represents an AMQP data channel, and provides most of the AMQP operations represents an AMQP connection constructs IConnection instances
IConnection:
ConnectionFactory:
construction and analysis of messages that are binary-compatible with messages produced and consumed by QPids JMS compatibility layer. various events and event handlers that are part of the AMQP client exceptions visible to the user of the AMQP client library. library.
RabbitMQ.Client.Events:
RabbitMQ.Client.Exceptions:
All other namespaces are reserved for private implementation detail of the library, although members of private namespaces are usually made available to applications using the library in order to permit developers to implement workarounds for faults or design mistakes they discover in the library implementation. Applications cannot rely on any classes, interfaces, member variables etc. that appear within private namespaces remaining stable across releases of the library.
Standard AMQP 0-8 protocol, including access.request, AMQP 0-8 as extended by QPids 0-8 M1 release, without
Standard AMQP 0-9 protocol, including access.request and basic.recover-async, but excluding the Message content-class and other areas of the specication marked "work in progress". Standard AMQP 0-9-1 protocol.
Protocols.AMQP_0_9_1:
The Protocols class also contains some convenience functions for retrieving an IProtocol from a string, from the environment or from a .NET XML conguration le. The protocol names permitted are
RabbitMQ .NET Client Library User Guide the same as the static instance variables on class Protocols, that is, AMQP_0_8, AMQP_0_8_QPID, AMQP_0_9, AMQP_0_9_1 and DefaultProtocol. The following code binds p to the Protocols.AMQP_0_9 instance by looking it up dynamically:
IProtocol p = Protocols.SafeLookup("AMQP_0_9");
the following code will also bind p to the 0-9 IProtocol implementation:
IProtocol p = Protocols.FromConfiguration("my-protocol");
An alternative is Protocols.FromEnvironmentVariable(), which reads the name of the protocol variant to return from the shell environment variable named by Protocols.EnvironmentVariable (at the time of writing, AMQP_PROTOCOL). Finally, Protocols.FromEnvironment() tries FromConfiguration() rst, and if no setting is found, falls back to FromEnvironmentVariable(). If no argument is passed to FromEnvironment() or FromConfiguration(), the value of Protocols.DefaultAppSettingsKey is used. (At the time of writing, the default appSettings key is AMQP_PROTOCOL, the same as the name of the shell environment variable scanned.)
RabbitMQ .NET Client Library User Guide Since the .NET client uses a stricter interpretation of the AMQP URI spec than the other clients, care must be taken when using URIs. In particular, the host part must not be omitted and virtual hosts with empty names are not addressable. All factory properties have default values. The default value for a property will be used if the property remains unassigned prior to creating a connection:
username: "guest" password: "guest" virtual-host: "/" protocol: AMQP 0-9-1 hostname: localhost port: 5672
The channel can now be used to send and receive messages, as described in subsequent sections.
Note that closing the channel is considered good practice, but isnt strictly necessary - it will be done automatically anyway when the underlying connection is closed. In some situations, you may want the connection to close automatically once the last open channel on the connection closes. To achieve this, set the IConnection.AutoClose property to true, but only after creating the rst channel:
IConnection conn = factory.CreateConnection(...); IModel channel = conn.CreateModel(); conn.AutoClose = true;
When AutoClose is true, the last channel to close will also cause the connection to close1. If it is set to true before any channel is created, the connection will close then and there.
This will actively declare the following objects: 1. a non-durable, non-autodelete exchange of "direct" type 2. a non-durable, non-exclusive, non-autodelete queue The exchange can be customised by using additional parameters. The above code then binds the queue to the exchange with the given routing key. Note that many Channel API methods are overloaded. The convenient short form of ExchangeDeclare uses sensible defaults. There are also longer forms with more parameters, to let you override these defaults as necessary, giving full control where needed. This "short version, long version" pattern is used throughout the API.
For ne control, you can use overloaded variants to specify the mandatory and immediate ags, or send messages with basic-class header properties:
byte[] messageBodyBytes = System.Text.Encoding.UTF8.GetBytes("Hello, world!"); IBasicProperties props = channel.CreateBasicProperties(); props.ContentType = "text/plain"; props.DeliveryMode = 2; channel.BasicPublish(exchangeName, routingKey, props, messageBodyBytes);
RabbitMQ .NET Client Library User Guide This sends a message with delivery mode 2 (persistent) and content-type "text/plain". See the denition of the IBasicProperties interface for more information about the available header properties.
Since noAck = false above, you must also call IModel.BasicAck to acknowledge that you have successfully received and processed the message:
... // acknowledge receipt of the message channel.BasicAck(result.DeliveryTag, false); }
Another alternative is to subclass DefaultBasicConsumer, overriding methods as necessary, or implement IBasicConsumer directly. You will generally want to implement the core method HandleBasicDeliver. More sophisticated consumers will need to implement further methods. In particular, HandleModelShutdown traps channel/connection closure. Consumers can also implement HandleBasicCancelOk to be notied of cancellations. The ConsumerTag property of DefaultBasicConsumer can be used to retrieve the server-generated consumer tag, in cases where none was supplied to the original IModel.BasicConsume call. You can cancel an active consumer with IModel.BasicCancel:
channel.BasicCancel(consumerTag);
When calling the API methods, you always refer to consumers by their consumer tags, which can be either client- or server-generated as explained in the AMQP specication document.
the application thread: contains the application logic, and makes calls on IModel methods to perform AMQP operations. the connection thread: hidden away and completely managed by the IConnection instance. the heartbeat read thread: continuously checking if IConnection instance has not missed too many Heartbeat frames from the broker the heartbeat write thread: continuosuly checking if IConnection instance should send Heartbeat frame to the broker
10
RabbitMQ .NET Client Library User Guide The one place where the nature of the threading model is visible to the application is in any callback the application registers with the library. Such callbacks include:
any IBasicConsumer method the BasicReturn event on IModel any of the various shutdown events on IConnection, IModel etc.
Application callback handlers must not invoke blocking AMQP operations (such as IModel.QueueDeclare, IModel.BasicCancel or IModel.BasicPublish). If they do, the channel will deadlock2. Only asynchronous AMQP operations without content are safe for use within callbacks, such as IModel.BasicAck. It is not safe to use IModel.BasicPublish in callbacks, because channel ow could block publication. For this reason, QueueingBasicConsumer is the safest way of subscribing to a queue, because its implementation uses RabbitMQ.Util.SharedQueue to pass deliveries over to the application thread, where all processing of received deliveries is done, and where any AMQP IModel operation is safe.
Symptoms of incorrect serialisation of IModel operations include, but are not limited to,
invalid frame sequences being sent on the wire (which occurs, for example, if more than one BasicPublish operation is run simultaneously), and/or being thrown from a method in class RpcContinuationQueue complaining about "Pipelining of requests forbidden" (which occurs in situations where more than one AMQP RPC, such as ExchangeDeclare, is run simultaneously).
NotSupportedExceptions
11
The BasicReturn event will re, for example, if the client publishes a message with the "mandatory" ag set to an exchange of "direct" type which is not bound to a queue.
A StreamMessage is similar (and BytesMessages are so similar to StreamMessages that I shant demonstrate them here):
IStreamMessageBuilder b = new StreamMessageBuilder(channel); b.Headers["header1"] = "[email protected]"; b.WriteDouble(123.45); b.WriteBytes(new byte[] { 1, 2, 3 });
Given a received message in the form of an IBasicProperties header and a byte[] body, reading the message as a MapMessage is done with IMapMessageReader:
IBasicProperties props = ...;
12
3. MessagingPatterns
Point-to-point messaging: both remote procedure call (RPC), and asynchronous messages directed toward a particular receiver Event broadcasting: one-to-many interactions; transmission of messages directed implicitly to a set of interested receivers, with collection of zero or more possible responses Responsibility transfer: choosing which piece of the network is responsible for any given message Reliable message transfer: at-least-once, at-most-once and exactly-once message delivery guarantees Coding with high-availability AMQP server pairs Preserving atomicity and idempotence when interacting with external resources
Limited library support is also available for working with these patterns, in the RabbitMQ.Client.MessagePatterns namespace:
Subscription
provides a high-level interface to receiving messages from the server builds on Subscription to implement an RPC or one-way service builds on Subscription to interact with remote services
SimpleRpcServer SimpleRpcClient
Future releases of the RabbitMQ .NET client library will include improved high-level support for the most common messaging patterns and their variations.
13
some means of addressing the service must be available some means of receiving a reply must be available some means of correlating the request message to the reply message must be available
3.2.1.1. Addressing the service Since AMQP messages are published using a pair of an exchange name and a routing key, this is sufcient for addressing a service. Using a simple exchange-name/routing-key combination permits a number of different ways to implement the service while presenting the same interface to clients. For instance, the service could be implemented as a single process consuming from a queue, and load-balancing internally, or it could be multiple processes consuming from a single queue, being handed requests round-robin style, thereby load balancing without special coding in the service logic. Messages can be addressed to the service request queue either
directly, using the AMQP default exchange (""); or indirectly, by using a service-specic exchange, which leaves the routing-key free for such purposes as method selection or additional service-specic addressing information; or indirectly, by using an exchange shared by multiple services, with the service name encoded in the routing key.
Using an exchange other than the default exchange permits other applications to receive copies of each request message, which can be useful for monitoring, auditing, logging and debugging. 3.2.1.2. Ensuring a service instance is listening AMQPs Basic-class publish operation (IModel.BasicPublish) provides two delivery ags, "mandatory" and "immediate", which can be used to ensure various kinds of service availability at the time a request is sent by a client.
14
RabbitMQ .NET Client Library User Guide Setting the "mandatory" ag causes a request to be returned if it cannot be routed to a queue, and setting the "immediate" ag causes a request to be returned if there is no service instance ready to receive (and, implicitly, process) the message at the time of publication. Returned messages appear as basic.return AMQP commands, which are made visible to the application via the IModel.BasicReturn event on the IModel that was used to publish the message. Since published messages are returned to clients via AMQPs basic.return method, and basic.return is an asynchronous negative-acknowledgement event, the absence of a basic.return for a particular message cannot be taken as a conrmation of delivery: the use of "mandatory" and "immediate" only provides a way of raising the bar, rather than eliminating failure entirely. When using "mandatory" or "immediate", its important to be aware that different AMQP servers implement the ags in different ways, depending on the degree of internal asynchrony and distribution that those servers exhibit. In particular, the interpretation of "mandatory" and "immediate" in situations where Tx-class transactions are active is underspecied in both versions 0-8 and 0-9 of the AMQP specication, and different server implementations behave in different ways. Additionally, the fact that a message was agged "mandatory", and successfully enqueued on one or more queues, is no guarantee of its eventual receipt: most trivially, the queue could be deleted before the message is processed, but other situations, like the use of the noAck ag by a message consumer, can also make the guarantees provided by "mandatory" and "immediate" conditional. Alternatively, one could use Publisher Conrms. Setting a channel into conrm mode by calling
IModel.ConfirmSelect causes the broker to send a Basic.Ack after each message is processed by
delivering to a ready consumer or by persisting to disk. Once a successfully processed message has been conrmed via the IModel.BasicAcks event handler, the broker has assumed responsibility for the message and the client may consider the message handled. Note that the broker may also negatively acknowledge a message by sending back a Basic.Nack. In this case, if a message is rejected via the IModel.BasicNacks event handler, the client should assume that the message was lost or otherwise undeliverable. Also, note that unroutable messages - mandatory or immediate messages published to non-existing queues or queues without consumers - are both Basic.Returned and Basic.Acked. 3.2.1.3. Receiving replies AMQPs Basic-class content header (IBasicProperties) contains a eld called ReplyTo, which in AMQP 0-8 and 0-9 is an unstructured string that can be used to tell the service where to post a reply to a received RPC request. Across current AMQP client libraries, there are two widely-used formats for the string in the ReplyTo header:
15
a URI-like string (take care - it is not a URI, it merely shares certain supercial characteristics with URIs) of the form
exchangeType://exchangeName/routingKey
where exchangeType is one of fanout, direct or topic, and both exchangeName and routingKey may be empty strings.
The service instance will post its reply to the named destination, and the requesting client should arrange to receive messages so addressed, using either BasicGet or BasicConsume on an appropriately-bound queue. 3.2.1.4. Correlating a received reply to a transmitted request AMQPs Basic-class content header (IBasicProperties) contains a eld called CorrelationId, which in AMQP 0-8 and 0-9 is an unstructured string that can be used to match a request to a reply. A reply message should have the same CorrelationId as the one that was attached to the request message.
16
auto-acknowledgement mode means that the server will internally mark a message as successfully delivered as it transmits it across the network. Messages delivered in auto-acknowledgement mode will not generally be redelivered to any other receiver. manual-acknowledgement mode means that the server will wait for positive conrmation of receipt before marking a message as successfully delivered. Messages delivered in manual-acknowledgement mode may be redelivered arbitrarily often3 until a receiver takes responsibility for a message by sending an acknowledgement for it.
In general,
if a service is in manual-acknowledgement mode, it should not acknowledge the request message until it has replied to it; see the section below on interaction with external resources. a client may use auto-acknowledgement mode, depending on the consequences of a retransmission of the request message.
When an RPC-style request has been processed, the reply is sent to the ReplyTo address. The reply address is rst matched against a regular-expression describing the URI-like syntax given above; if it matches, the components of the URI-like syntax are used as the reply address, and if it does not, the whole string is used as a simple queue name, and the reply is sent to the default exchange ("") with a routing-key equal to the ReplyTo string. After a reply message, including possible IBasicProperties headers, is produced by the service logic, the replys CorrelationId is set to be equal to the CorrelationId of the request, if any, before transmission. For very basic or unusual asynchronous point-to-point messaging tasks, a Subscription may be used instead of SimpleRpcServer - please see the section below on Subscriptions.
17
RabbitMQ .NET Client Library User Guide The basic pattern for implementing a service using SimpleRpcServer is as follows (assuming a class MySimpleRpcServerSubclass extending SimpleRpcServer):
using (IConnection conn = new ConnectionFactory() .CreateConnection(serverAddress)) { using (IModel ch = conn.CreateModel()) { Subscription subscription = new Subscription(ch, /* ... */); // in the line above, the "..." indicates the parameters // used to specify the address to use to route messages // to the subscription. This subscription will be used // to read service request messages, so the "..." effectively // specifies the service address. new MySimpleRpcServerSubclass(subscription).MainLoop(); } }
The service logic would be implemented in an override of one of the HandleCall or HandleCast overloads on MySimpleRpcServerSubclass. For full details, please see the code documentation for SimpleRpcServer. 3.2.4.2. SimpleRpcClient The class RabbitMQ.Client.MessagePatterns.SimpleRpcClient implements code for interacting with SimpleRpcServers or similar. RPC-style interactions are performed with the Call methods. A (private) Subscription is set up to receive replies from the service, and the ReplyTo eld is set to point to the subscription. The CorrelationId eld of the request is initialised to a fresh GUID. Asynchronous/one-way interactions are simply passed on to IModel.BasicPublish without modication: it is up to the caller to set CorrelationId in the asynchronous case. The class currently has no support for setting the "mandatory" or "immediate" ags on a published request message, nor for handling any BasicReturn events that might arise from setting either ag. The code that retrieves replies from the internal Subscription currently cannot deal with multiple simultaneously outstanding RPC requests, because it requires that replies arrive in the same order as the requests were sent out. Do not attempt to pipeline requests sent through a single instance of SimpleRpcClient until this restriction has been lifted. See also the overridable protected method SimpleRpcClient.RetrieveReply. The basic pattern for using SimpleRpcClient is as follows:
using (IConnection conn = new ConnectionFactory()
18
Note that a single SimpleRpcClient instance can perform many (sequential) Call() and Cast() requests! It is recommended that a single SimpleRpcClient be reused for multiple service requests, so long as the requests are strictly sequential.
19
See the documentation for the various overloads of BasicPublish on class RabbitMQ.Client.IModel.
3.3.2. Subscription
The class RabbitMQ.Client.MessagePatterns.Subscription implements most of the boilerplate of receiving messages (including, in particular, broadcast events) for you, including consumer declaration and management, but excluding queue and exchange declaration and queue binding. For example,
// "IModel ch" in scope. Subscription sub = new Subscription(ch, "STOCK.IBM.#"); foreach (BasicDeliverEventArgs e in sub) { // handle the message contained in e ... // ... and finally acknowledge it sub.Ack(e); }
will start a consumer on the queue using IModel.BasicConsume. It is assumed that the queue and any bindings have been previously declared.
Subscription.Ack() should be called for each received event, whether or not auto-acknowledgement mode is used, because Subscription internally knows whether an actual network message for acknowledgement is required, and will take care of it for you in an efcient way so long as Ack() is
always called in your code. For full details, please see the code documentation for the Subscription class.
20
... followed by consumption of messages from "MyApplicationQueue" using BasicGet or BasicConsume. A more full example is given in the ApiOverview chapter.
for high-volume messaging where it is occasionally acceptable to not receive one of the messages one is interested in, auto-acknowledgement mode makes sense for scenarios where every message matching our subscription needs to be delivered, manual-acknowledgement is appropriate
For more information, see the section on reliable message transfer below. Note also that class Subscription takes care of acknowledgement and the various acknowledgement modes for you, so long as Subscription.Ack() is called for each received message.
a non durable exchange and/or queue is used4, or a message is published with its IBasicProperties.DeliveryMode set to any value other than 2
the message is considered transient, and will not (usually) be written to disk as part of the interaction between the AMQP server and the various AMQP clients publishing and consuming messages.
21
RabbitMQ .NET Client Library User Guide When a message is transient, it means that the responsibility for ultimate processing of the message resides with the endpoints - the two AMQP clients involved: the publisher, and the consumer. Responsibility can be partially transferred to the broker by using durable queues, durable exchanges, persistent-mode delivered messages (with DeliveryMode set equal to 2), and Publisher Conrms:
ensure (ahead of time) that the target queue is durable, select Confirm mode using IModel.ConfirmSelect, publish the message with "mandatory" ag set and DeliveryMode set equal to 2, listen for acknowledgements and negative acknowledgments by setting the IModel.BasicAcks and BasicNacks event handlers.
Once a broker acknowledges a message via the BasicAcks handler, it has taken responsibility for keeping the message on disk and on the target queue until some other application retrieves and acknowledges the message. If a broker rejects a message via the BasicNacks handler, the publisher may assume that the message was lost or otherwise undeliverable. Note that for unroutable messages are not considered failures and are both Basic.Returned and Basic.Acked. So, if the "mandatory" or "immediate" are used, the client must also listen for returns by setting the IModel.BasicReturn handler. Responsibility can also be placed with an external database, even further along the chain - see the section on interaction with external resources below.
22
publish the message as usual, with some correlation identier and reply-to address on it so that the receiver can acknowledge receipt to the sender when receiving a message, send an acknowledgement message back to the sender. If the message is an RPC request, then the RPC reply message is implicitly an acknowledgement of receipt of the request.
To reduce the need for resends of a message when publishing using an at-least-once QoS level, it can sometimes be appropriate to use Confirm-class, as described above in the section on responsibility transfer. Of course, if a conrmation from the broker is lost, then a resend will have to be done, since the sending client doesnt know whether the server actually saw the message or not unless the Basic.Nack arrives. Alternatively, rather than implement the round-trip logic manually, a client may use Publisher Conrms. By enabling Conrm mode on a channel, a client is requesting that the broker acknowledge or negatively acknowledge all messages sent on the channel from that point on. See the instructions from Responsibility Transfer on how to use conrms. Deciding on a message-resend policy can be difcult. Some simple resend strategies are:
resend if your connection is lost or some other crash occurs before you receive conrmation of receipt timeout and resend if you do not receive a conrmation within a few seconds. Make sure to double the timeout for each resend, to help avoid retry-related denial-of-service and network congestion.
publish the message, once, as usual. No correlation identier is required. receive the message in the consuming application, paying attention to the Redelivered ag on the delivery. The Redelivered ag will only be clear when the server believes that it is offering a message for consumption for the very rst time. If any attempt at delivery has been made before, the Redelivered ag will be set.
The Redelivered ag is a very limited piece of information, giving only at-most-once QoS. In particular, it cannot be used for exactly-once QoS.
23
publish the message as usual, with some correlation identier and reply-to address on it so that the receiver can acknowledge receipt to the sender when receiving a message, keep a record of the messages that have been processed, and only process a received message if it has not been seen before. always send an acknowledgement message back to the sender, even if the message has been seen before. if the message is an RPC request, then the RPC reply message is implicitly an acknowledgement of receipt of the request. The RPC reply message must not change, even if it is sent a second time: it is important that even if one or more copies of the request or the reply message is lost or duplicated that the original requestor receives consistent information back from the requestee.
An interesting challenge in implementing the record of processed messages is deciding when it is acceptable to remove entries from the table (equivalent to being condent that no duplicates of those messages will appear in future). One option is to use the message expiry header in the IBasicProperties structure, but be warned: versions of AMQP up to and including 0-9 do not specify the syntax or semantics of this eld! Another option is to have a three-way exchange between the sender and recipient in which the sender promises not to send any further duplicates on the third leg of the interaction. Still another option (perhaps the most elegant and space-efcient) is to use message identiers that are strictly increasing as time goes by, so that a single "high water mark" can serve as a record of not only that message, but of all other messages preceding it, without taking up any additional space. Care must be taken when using this last option to account for request messages that arrive out-of-order or that go missing.
atomicity of published/acknowledged work units, and availability of congured resources on the backup server
Message producers should take care to use transactions in order to receive positive conrmation of receipt of a group of messages from a server, and should keep a record of the exchanges, queues and
24
RabbitMQ .NET Client Library User Guide bindings they need to have available in order to perform their work, so that on failover, the appropriate resources can be declared before replaying the most recent transactions to recover. Message consumers should be aware of the possibility of missing or duplicate messages when failing over: a publisher may decide to resend a transaction whose outcome is in doubt, or a transaction the publisher considered complete could disappear entirely due to failure of the primary AMQP server.
If a work-triggering request went missing, another copy will (eventually) arrive from the ultimate requestor. If the work was already performed, for instance a database table was updated, in a previous receipt of the work item in question, the service needs to keep a record of completion of the external work that is atomic with respect to the atomic work itself: for instance, within the same database transaction, some log of honoured requests could be updated, or the row being modied could be updated to include the ID of the request that caused the modication, as well as previous request-IDs that modied the row in question. This makes it important to be able to compress request IDs so that they do not take unbounded space in the log of performed work, and so that we do not need to introduce a full distributed garbage-collection protocol with the ultimate requestor. One way of doing this is to choose to use request IDs that are strictly increasing, so that a "high water mark" can be used; see also the section on exactly-once delivery above.
Once the work is known to have been performed, and a reply has been produced (if there is one), the reply can be sent back to the requestor as many times as necessary. The requestor knows which replies it is expecting, and can discard unwanted duplicates. So long as duplicates of the same request always
25
RabbitMQ .NET Client Library User Guide receive identical reply messages, the replier need not be careful about sending too many copies of the reply.
Once the reply has been sent to the AMQP server, the request message can be acknowledged as received and processed with the AMQP server. In cases where there is no reply to a request, the acknowledgement is still useful to ensure that requests are not lost.
4. ShutdownProtocols
4.1. General pattern of AMQP client shutdown
AMQP connection, model, channel and session objects share the same general approach to managing network failure, internal failure, and explicit local shutdown. Each object has a lifecycle state, which can be one of
open: the object is ready for use closing: the object has been explicitly shut down locally, has issued a shutdown request to any supporting lower-layer objects, and is waiting for the lower layers shutdown-complete notication closed: the object has received a shutdown-complete notication from a lower layer, and has shut itself down in response.
Objects always end up in the closed state, without regard for whether the closure was triggered by a local application request, by an internal client library failure, or by a remote network request or network failure. In general, objects possess the following shutdown-related members:
a shutdown event handler MulticastDelegate, which will be red when the object transitions to closed state a close reason property, to allow callers to inspect information about the circumstances that led to the objects shutdown a convenience property, useful for debugging, for testing whether the object is in an open state a close method that triggers the shutdown machinery for the object
26
4.2.1. ShutdownInitiator
ShutdownInitiator contains values representing the originator of a shutdown event. The three values
are
Application, for shutdown events that originated due to local application action (i.e. an explicit call to a Close() method) Library, for shutdowns caused by events originating within the RabbitMQ .NET client library itself, such as internal errors Peer, for shutdowns triggered by the peer, either through network failure or through explicit peer request (i.e. a received channel.close or connection.close method).
4.2.2. ShutdownEventArgs
The ShutdownEventArgs class is used to carry the full circumstances of a shutdown, including a ShutdownInitiator value and any relevant reply code and/or text, AMQP class and/or method ID, and possible "cause" object (usually an Exception). A ShutdownEventArgs instance is carried as the argument to various shutdown event handler delegates used in the system, and one is also carried by AlreadyClosedException and OperationInterruptedException.
27
The pattern that should be used is to ignore the IsOpen property, and instead simply attempt the action desired. An OperationInterruptedException will be thrown in cases where the object is in an invalid state:
public void BetterMethod(IModel model) { try { ... model.BasicQos(0, 1, false); } catch (OperationInterruptedException ope) { // Handle one of the many possible reasons why the BasicQos or any // other operation before it couldnt be handled } catch (IOException ioe) { // Check why socket was closed } }
In the above pattern we also catch IOExceptions caused by a SocketException. Such exceptions may be raised when the broker closes the connection unexpectedly.
28
Any time an AMQP operation is invoked on an IModel that is not in the opened state, an AlreadyClosedException is thrown.
4.5.2. IConnection
IConnection encapsulates an AMQP connection. When the connection shuts down, either through explicit user action or through network failure or similar, all associated channels, sessions, and models are shut down. Connection can be gracefully closed using Close() or forced to close using Abort() methods. Close(int timeout) and Abort(int timoeut) methods allow for speciyng timeout for underlying connection close operations to nish. If such timeout is reached we force the socket to close and exit. Default value is Timeout.Infinite. A call on Close() method on IConnection object which was previously closed, will throw AlreadyClosedException and new close reason will be ignored. Abort() can be called several times, since any attempt to abort closed connection will be ignored. ShutdownReport property returns any errors that occured during connection close operations as a list of ShutdownReportEntry objects.
delegate ConnectionShutdownEventHandler(IConnection connection, ShutdownEventArgs reason); event ConnectionShutdownEventHandler ConnectionShutdown; ShutdownEventArgs CloseReason { get; } bool IsOpen { get; } void Close(); void Close(int timeout); void Abort(); void Abort(int timeout); IList ShutdownReport { get; }
4.5.3. ISession
Sessions are currently an internal, implementation-only concept, and should not be used by applications, as they are not part of the public API.
delegate SessionShutdownEventHandler(ISession session, ShutdownEventArgs reason); event SessionShutdownEventHandler SessionShutdown; ShutdownEventArgs CloseReason { get; } bool IsOpen { get; } void Close(ShutdownEventArgs reason);
29
5. TroubleShooting
5.1. Heartbeat issue with Mono 1.1.17.1 on Redhat FC6/x86-64
Fix: Upgrade Mono to 1.2.x. Symptom: Exception while connecting. Appears immediately, not after the expected 3 or 6 seconds. Example symptom trace:
Unexpected connection Connection(d49c7727-3d56-4101-909e-5a7ff17b5647, amqp-0-9://127.0.0.1:5672) closure: AMQP close-reason, initiated by Library, code=0, text="End of stream", classId=0, methodId=0, cause=System.IO.EndOfStreamException: Heartbeat missing with heartbeat == 3 seconds at RabbitMQ.Client.Impl.ConnectionBase.HandleSocketTimeout () [0x00000] at RabbitMQ.Client.Impl.ConnectionBase.MainLoopIteration () [0x00000] at RabbitMQ.Client.Impl.ConnectionBase.MainLoop () [0x00000]
6. Examples
This section gives an overview of the simple examples provided with .Net client distribution.
30
6.2.2. AddServer
AddServer performs the function of the remote procedure call server. On the lower level it uses the
Subscription pattern that reads messages from the queue, calculates the sum of the numbers included in the body of the message and sends an acknowledgement with the result.
6.2.3. DeclareQueue
This example creates a queue (if it does not exist yet) and binds it to multiple exchanges using the exchange name and routing key tuple.
6.2.4. ExceptionTest
ExceptionTest allows to see the usage of Shutdown protocols in a real scenario. We attach three event
handlers to both the connection and the model, which then print information messages in an order dened in the shutdown protocol.
6.2.5. LogTail
The LogTail example makes use of the Subscription pattern described in the MessagingPatterns section. When the exchange name is empty, it declares a named queue, otherwise it declares an exchange of the specied type and a temporary queue from which it will consume messages. LogTail quietly consumes messages until it receives a message with only quit in the body.
6.2.6. SendMap
SendMap publishes a single message to the exchange which is constructed from key/value pairs given as
arguments. Keys that start with + are placed in the body of the message, whereas those starting with - go to the header. Supported values types are: string/byte array, byte array (base-64), boolean, 32-bit integer, double precision oat and xed-point decimal. Refer to the info printed in the command line for detailed information on how to specify values with particular types.
31
6.2.7. SendString
The SendString example performs a single message publish, according to the given routing key. If the exchange name is not empty it declares an exchange with the given name and type. Otherwise it declares a queue with the name given in the routing key.
6.2.8. SingleGet
SingleGet will try to retrieve a message from the queue, the name of which is given in the command line. If there is no message in the queue it will close the connection and exit.
7. BuildingTheClient
7.1. Source Tree Layout
The source tree is laid out as follows:
docs
projects/client/Apigen project
lib
- Third-party libraries and programs referenced by the code or used during the build - Source code to the various parts of the system
projects
client - Source code and project les for building the client
Apigen - Project for the XML specication parser and code generator application ApigenBootstrap - Project for creating a library out of some parts of RabbitMQ.Clients
RabbitMQ.Client - The client library project Unit - Unit tests for the client library
client - Example code and projects for using the client library wcf - Example code and projects for using the WCF binding
32
Local.props
- Local customizations for the build process. Copy the contents of - The Visual Studio solution le which contains all the projects
Microsoft .NET 2.0 (or later) Microsoft .NET 3.0 (or later) if you want to build the WCF binding too
7.4. Building
7.4.1. On Windows, with Visual Studio
Simply open RabbitMQDotNetClient.sln with Visual Studio and build. If you are using a version of Visual Studio later than Visual Studio 2005, you will have to convert the solution to make it compatible with your version of Visual Studio. This process is automated and you are presented with a wizard when you rst open the solution le. The projects in the RabbitMQ .NET client contain some customizations in order to allow generating source les and running NUnit tests as part of the build process. You might be presented with warnings
33
RabbitMQ .NET Client Library User Guide claiming that the projects might be unsafe. You will have to instruct Visual Studio to open all projects normally. To skip running the NUnit tests as part of the build, select the DebugNoTest build conguration. Note: If you change a property in Local.props while the solution is loaded in Visual Studio, you will have to close the solution and reopen it, for the changes to take effect.
34
assembly
- The
produced by Apigen
projects/client/RabbitMQ.Client/build/bin/RabbitMQ.Client.xml
8. ImplementationGuide
The internals of the RabbitMQ .NET AMQP client library implementation live in src/client/impl, in C# namespace RabbitMQ.Client.Impl. Most of the classes mentioned below are in this namespace, modulo conspicuous exceptions such as IModel and IProtocol, which are instead in namespace RabbitMQ.Client.
35
RabbitMQ .NET Client Library User Guide Each AMQP channel, that is, an uninterpreted, independent stream of commands, is represented by an instance of ISession. There are three implementations of this interface at the time of writing: Session, which provides the normal operation of a channel, QuiescingSession, which represents a channel in the process of an abnormal shutdown, and MainSession which controls special channel zero responsible for sending/receiving frames and used in ConnectionBase. The ISession instances do not interpret the commands that travel across them. Interpretation of AMQP commands sent and received is done by the "model" code, implemented for the most part in ModelBase. This is the class that contains the majority of the implementation of the public AMQP API from IModel, as well as the private AMQP operations from IFullModel. It is also ModelBase that provides the request/response correlation during an AMQP RPC-style synchronous operation, in conjunction with RpcContinuationQueue.
36
RabbitMQ .NET Client Library User Guide AMQP commands transmitted from the server to the client are processed by each ConnectionBases connection thread, which runs ConnectionBase.MainLoop until the connection is terminated.
MainLoop reads a frame from the connections socket, blocking until either some trafc arrives or the
sockets read-timeout exception res. A timeout in .Net means that the socket is in an unusable state, hence the whole Connection needs to be closed. If Heartbeat support is active then two additional loops run in separate threads: ConnectionBase.HeartbeatReadLoop and ConnectionBase.HeartbeatWriteLoop.
HeartbeatReadLoop continuously checks if our connection was inactive for too long and we missed too many Heartbeat frames the broker. In such case EndOfStreamException occurs and the
connection is closed.
HeartbeatWriteLoop continously checks the activity of the connection and forces Heartbeat frame
to be sent to the broker if it was idle for too long. Once a complete frame has been read from the socket, it is dispatched with a call to ISession.HandleFrame to the ISession object responsible for the channel number carried within the frame. In the normal case, the ISession implementation will be Session, whose HandleFrame method makes use of an instance of CommandAssembler to stitch sequentially-received frames together into whole AMQP commands. As soon as a complete command is available, it is sent through the CommandReceived event handler on Session, which in the usual case will result in an invocation of ModelBase.HandleCommand.
ModelBase.HandleCommand uses DispatchAsynchronous, which is part of the
automatically-generated code produced by Apigen, to decide whether the received command is an asynchronous event (including RPC responses that have been marked in IModel as AmqpForceOneWay etc) or an RPC response that should release a waiting IRpcContinuation, about which more below.
synchronous, RPC-style interaction, e.g. ExchangeDeclare, BasicGet and BasicConsume. asynchronous, event-style interaction, e.g. BasicAck, BasicPublish.
Sometimes, what would normally be an RPC-style interaction must, for implementation reasons, instead be treated as two loosely associated asynchronous messages, for instance when nowait=true on methods like ExchangeDeclare, or in the case of methods like BasicConsume. For more information, see the section on AmqpForceOneWay in the section on ApiGen.
37
RabbitMQ .NET Client Library User Guide The ModelBase implementation does not directly choose which alternative to use: instead, the autogenerated code makes calls to ModelBase.ModelRpc and ModelBase.ModelSend as directed by the annotations on IFullModel (again, see the section on ApiGen for more details).
ModelSend is the simpler of the two, as no record of an awaited reply is required: the command is simply formatted and sent down the socket (via Command.Transmit, via SessionBase.Transmit).
ModelRpc is more involved. Calls to IModel methods that (indirectly) invoke ModelRpc should only occur in the applications thread, and should never occur in the connections thread (see also the section on threading issues and deadlock in the ApiOverview).
38
If this needs revisiting, a good place to start would be extending IProtocol to cover the variation.
9. ApiGen
Apigen is the program that reads the AMQP XML specication documents, and autogenerates the code found after a build in the build/gensrc/autogenerated-api-*.cs les.
39
RabbitMQ .NET Client Library User Guide It is automatically invoked as part of the NAnt default.build script.
Apigen uses the IModel interface denition to guide its code generation process in conjunction with the particular XML specication le chosen. First, IModel and a minimal number of its supporting classes and interfaces are compiled together using the C# compiler, resulting in build/bin/apigen-bootstrap.dll. Apigen then uses .NET reection while reading the XML specication le (from docs/specs/amqp*.xml), and nally generates the output C# code.
40
RabbitMQ .NET Client Library User Guide The generated code is then compiled with all the C# API and implementation classes, resulting in build/bin/RabbitMQ.Client.dll.
The <input-spec-xml> parameter should be the path to the AMQP specication le to digest. The <output-csharp-file> should be the location of the output le to generate. The available options are:
apiName:<identifier>
- Supplying a namespace prex of, for instance, foo, will cause the generated code to be placed in RabbitMQ.Client.Framing.foo and RabbitMQ.Client.Framing.Impl.foo. If this parameter is not supplied, a default will be constructed from the version (either the /v: command-line option, or the version specied in the spec XML): if the version is N-M, for instance 0-8, then the effect is as if /n:vN_M was supplied (e.g. /n:v0_8). - Overrides the version numbers found in the spec XML le. Used as part of the namespaces for generated code if no /n: option is supplied.
v:<majorversion>-<minorversion>
41
class RabbitMQ.Client.Framing.VersionSpecicPart.Protocol class RabbitMQ.Client.Framing.VersionSpecicPart.Constants interface RabbitMQ.Client.Framing.VersionSpecicPart.IClassnameMethodname, one per AMQP XML specication method class RabbitMQ.Client.Framing.VersionSpecicPart.ClassnameProperties, one per AMQP XML content-bearing class
class RabbitMQ.Client.Framing.Impl.VersionSpecicPart.Model class RabbitMQ.Client.Framing.Impl.VersionSpecicPart.ClassnameMethodname, one per AMQP XML specication method
The Protocol class implements IProtocol. Its most important generated methods are DecodeMethodFrom and DecodeContentHeaderFrom. The Constants class collects the various numeric constants dened in the XML specication le.
42
RabbitMQ .NET Client Library User Guide Each IClassnameMethodname interface represents a protocol-specic variant of a single AMQP method, and its corresponding Impl-namespaced ClassnameMethodname class is the implementation of the interface. Each ClassnameProperties class is a protocol-specic implementation of a common content header interface. The Model class implements the autogenerated methods from the IFullModel denition (about which much more below, in the "The Common Model" section), as well as implementing the DispatchAsynchronous method used to decide if an incoming command is an asynchronous event or a reply to a synchronous RPC request. The inheritance relationships are as follows (for specication version 0-9; other versions follow, mutatis mutandis): for Protocol:
RabbitMQ.Client.Framing.v0_9.Protocol
RabbitMQ.Client.Framing.Impl.v0_9.ProtocolBase
RabbitMQ.Client.Impl.AbstractProtocolBase
RabbitMQ.Client.IProtocol
43
RabbitMQ.Client.Impl.ModelBase
is written by hand is long and complex is protocol-neutral is implemented in le src/client/impl/ModelBase.cs implements RabbitMQ.Client.Impl.IFullModel
RabbitMQ.Client.Impl.IFullModel
is written by hand is protocol-neutral is compiled in to Apigen and used to guide the compilation process extends RabbitMQ.Client.IModel
RabbitMQ.Client.IModel
is written by hand is protocol-neutral contains the main public API for performing AMQP operations.
for BasicProperties:
RabbitMQ.Client.Framing.v0_9.BasicProperties
RabbitMQ.Client.Impl.BasicProperties
44
implements RabbitMQ.Client.IBasicProperties
RabbitMQ.Client.Impl.ContentHeaderBase
RabbitMQ.Client.IBasicProperties
RabbitMQ.Client.Impl.IFullModel
extends the IModel interface. Apigen is linked with these interfaces, and at runtime uses reection to look for the IFullModel interface (see denition of Apigen.m_modelType). The denitions in IFullModel, taken together with the class and method denitions in the AMQP specication XML, guide the code generation process.
members that should be autogenerated, and members that must not be autogenerated, that will be supplied by hand-written code.
45
Use the AmqpContentHeaderFactory attribute to specify that a particular method is to be implemented by constructing an instance of a protocol-specic implementation of a common, protocol-neutral interface. The parameter to the attribute species the content class that should be used. It may not be null.
9.4.3.1. AmqpMethodMapping If the name of the method does not match any AMQP name, a mapping must be explicitly provided:
[AmqpMethodMapping(null, "channel", "open")] void _Private_ChannelOpen(string outOfBand);
The rst parameter to the attribute species the specication version to which the attribute should apply, or null if it should apply to any and all specication versions. The second and third parameters are the AMQP specication class and method names, respectively, to use when building a mapping for this C# method. 9.4.3.2. AmqpMethodDoNotImplement The AmqpMethodDoNotImplement attribute can be used on any method to cause code-generation to skip that method.
[AmqpMethodDoNotImplement(null)]
46
It should be used to mark interface methods that are backed by hand-written code: for example, the ExchangeDeclare overload above is a convenience method, backed by hand-written code that invokes a different overload of ExchangeDeclare with all the missing parameters lled in with sensible defaults. Another case in which hand-written code is required is when non-standard RPC processing is needed, for instance in the cases of BasicConsume and BasicCancel. These delegate (in hand-written code) to the automatically-generated _Private_BasicConsume and _Private_BasicCancel methods. This pattern provides an opportunity to combine automatically-generated marshalling code with other concerns not related to the framing or transmission of a request. The parameter to the attribute species the specication version to which the attribute should apply, or null if it should apply to any and all specication versions.
9.4.4.1. AmqpFieldMapping If the name of the parameter to a method call does not t such an analysis, the AmqpFieldMapping attribute should be used on the parameter concerned:
void _Private_BasicConsume(..., bool exclusive, bool nowait, [AmqpFieldMapping("RabbitMQ.Client.Framing.v0_9", "filter")] IDictionary arguments);
The parameter to the attribute species the specication version to which the attribute should apply, or null if it should apply to any and all specication versions. The second parameter is the AMQP XML eld name to match to the parameter.
47
RabbitMQ .NET Client Library User Guide 9.4.4.2. AmqpNowaitArgument Some AMQP command requests have a "nowait" boolean eld, which affects the interaction style of the command, turning it from a synchronous RPC request into an asynchronous command request. In order to generate the correct workow code, Apigen needs to know which (if any) of a methods parameters will change the servers interpretation of the interaction style of the command. The AmqpNowaitArgument attribute should be used for this purpose:
void _Private_ExchangeDelete(string exchange, bool ifUnused, [AmqpNowaitArgument(null)] bool nowait);
When AmqpNowaitArgument decorates a particular parameter, if that parameter is true at runtime, the generated code will send the request asynchronously; otherwise it will send it synchronously. It is an error to apply AmqpNowaitArgument to methods mapped to commands that are not synchronous. The rst parameter to the attribute species the specication version to which the attribute should apply, or null if it should apply to any and all specication versions. The second, optional, parameter to the attribute species the value to return from the method in cases where the servers reply is not waited for. It can be safely omitted for methods returning void, or methods returning a reference type (in which case null is returned). For other methods, it should be a string containing a C# code fragment to place in the generated code. 9.4.4.3. AmqpContentHeaderMapping and AmqpContentBodyMapping Some methods take AMQP content, in the form of subsequent frames to be sent on the wire: content headers followed by content body. The AmqpContentHeaderMapping and AmqpContentBodyMapping attributes mark the parameters of a method that should be sent as the content header and content body frames, respectively:
void _Private_BasicPublish(ushort ticket, string exchange, string routingKey, bool mandatory, bool immediate, [AmqpContentHeaderMapping] IBasicProperties basicProperties, [AmqpContentBodyMapping] byte[] body);
48
In the example above, the XML specication talks about request-reply pairs involving connection.start and connection.start-ok, and connection.tune and connection.tune-ok. Because these are seen from the servers perspective, and we are implementing a client, we need to talk about a request-reply pair involving connection.start-ok and connection.tune instead. 9.4.5.2. AmqpFieldMapping If AmqpFieldMapping is applied to the return value of a mapped C# method, it causes a single eld to be extracted from the reply command and returned. If it is not applied, however, then if the method does not return void, the return type is assumed to be valuetype (a.k.a. struct) with annotations specifying how to map AMQP reply method elds onto elds of the returned struct.
[return: AmqpFieldMapping(null, "messageCount")] uint QueuePurge(...);
The above example extracts and returns just the "message-count" eld of the queue.purge-ok reply.
[return: AmqpMethodMapping(null, "connection", "tune")] ConnectionTuneDetails ConnectionStartOk(IDictionary clientProperties, string mechanism, byte[] response, string locale); public struct ConnectionTuneDetails
49
The above example extracts the "channel-max", "frame-max" and "heartbeat" elds of the reply, and inserts them into a fresh ConnectionTuneDetails structure. The denitions of the elds may have AmqpFieldMapping attributes applied to them if their names do not match the names given in the specication XML. 9.4.5.3. AmqpForceOneWay In some cases where a method mapping would otherwise be generated as a synchronous RPC, we need to send it instead as an asynchronous command, decoupling the request from the response and permitting the weaving of non-framing-related concerns into the workow. In these cases, applying AmqpForceOneWay to the method causes it to always be sent as an asynchronous request. Methods so marked must return void.
[AmqpForceOneWay] [AmqpMethodMapping(null, "basic", "get")] void _Private_BasicGet(ushort ticket, string queue, bool noAck); void HandleBasicGetOk(...); void HandleBasicGetEmpty();
The example above has been marked AmqpForceOneWay because the specication XML supplies two possible responses, basic.get-ok and basic.get-empty, which does not t the simple RPC request-reply pattern implemented for many of the other commands. Since basic.get will always result in one or the other of the mentioned result methods, its important to handle these methods as if they were asynchronous events from the broker, matching up the request and response in hand-written code.
50
In the example above, whenever a basic.deliver method arrives, it will be dispatched, as it arrives, to the hand-written implementation of HandleBasicDeliver, and will not be assumed to be the reply to an earlier RPC-style request. Note that AmqpContentHeaderMapping and AmqpContentBodyMapping are permitted on the arguments of an asynchronous event handler.
In the example above, queue.unbind is marked as unsupported by the QPid-specic variant of the 0-8 protocol. Clients using the QPid-specic 0-8 IProtocol implementation will, at runtime, receive a thrown UnsupportedMethodException if they call QueueUnbind.
[AmqpForceOneWay] [AmqpMethodMapping(null, "basic", "consume")] void _Private_BasicConsume(ushort ticket, string queue, string consumerTag, bool noLocal, bool noAck, bool exclusive, bool nowait, [AmqpUnsupported("RabbitMQ.Client.Framing.v0_8")] [AmqpFieldMapping("RabbitMQ.Client.Framing.v0_9", "filter")] IDictionary arguments);
In the example above, the "arguments" parameter is unsupported in standard 0-8, and in 0-9 t is named "lter" instead of "arguments". In all other implementations, it is assumed to be supported and named "arguments".
51
RabbitMQ .NET Client Library User Guide The parameter to the attribute species the specication version to which the attribute should apply, or null if it should apply to any and all specication versions.
Notes
1. See RabbitMQ.Client.Impl.SessionManager.CheckAutoClose() for the implementation of this feature. 2. The underlying implementation reason is that the IBasicConsumer callbacks are invoked in the connections thread rather than in the applications thread. 3. Within limits - please see the AMQP specication for precise details of when redelivery is permitted and when and how it is mandated. 4. See the AMQP specication for full details of the meaning of "durable" here 5. Submissions welcome!
52