Class ConnectionFactory
Main entry point to the RabbitMQ .NET AMQP client API. Constructs IConnection instances.
public sealed class ConnectionFactory : ConnectionFactoryBase, IAsyncConnectionFactory, IConnectionFactory
- Inheritance
-
ConnectionFactory
- Implements
- Inherited Members
Remarks
A simple example of connecting to a broker:
ConnectionFactory factory = new ConnectionFactory();
//
// The next six lines are optional:
factory.UserName = ConnectionFactory.DefaultUser;
factory.Password = ConnectionFactory.DefaultPass;
factory.VirtualHost = ConnectionFactory.DefaultVHost;
factory.HostName = hostName;
factory.Port = AmqpTcpEndpoint.UseDefaultPort;
factory.MaxMessageSize = 512 * 1024 * 1024;
//
IConnection conn = factory.CreateConnection();
//
IModel ch = conn.CreateModel();
//
// ... use ch's IModel methods ...
//
ch.Close(Constants.ReplySuccess, "Closing the channel");
conn.Close(Constants.ReplySuccess, "Closing the connection");
The same example, written more compactly with AMQP URIs:
ConnectionFactory factory = new ConnectionFactory();
factory.SetUri("amqp://localhost");
IConnection conn = factory.CreateConnection();
...
Please see also the API overview and tutorial in the User Guide.
Note that the Uri property takes a string representation of an AMQP URI. Omitted URI parts will take default values. The host part of the URI cannot be omitted and URIs of the form "amqp://foo/" (note the trailing slash) also represent the default virtual host. The latter issue means that virtual hosts with an empty name are not addressable.
Constructors
ConnectionFactory()
Construct a fresh instance, with all fields set to their respective defaults.
public ConnectionFactory()
Fields
DefaultAuthMechanisms
Default SASL auth mechanisms to use.
public static readonly IList<IAuthMechanismFactory> DefaultAuthMechanisms
Field Value
DefaultChannelMax
Default value for the desired maximum channel number. Default: 2047.
public const ushort DefaultChannelMax = 2047
Field Value
DefaultConnectionTimeout
Default value for connection attempt timeout.
public static readonly TimeSpan DefaultConnectionTimeout
Field Value
DefaultFrameMax
Default value for the desired maximum frame size. Default is 0 ("no limit").
public const uint DefaultFrameMax = 0
Field Value
DefaultHeartbeat
Default value for desired heartbeat interval. Default is 60 seconds, TimeSpan.Zero means "heartbeats are disabled".
public static readonly TimeSpan DefaultHeartbeat
Field Value
DefaultMaxMessageSize
Default value for the maximum allowed message size, in bytes, from RabbitMQ. Corresponds to the
rabbit.max_message_size
setting.
Note: the default is 0 which means "unlimited".
public const uint DefaultMaxMessageSize = 0
Field Value
DefaultPass
Default password (value: "guest").
public const string DefaultPass = "guest"
Field Value
DefaultUser
Default user name (value: "guest").
public const string DefaultUser = "guest"
Field Value
DefaultVHost
Default virtual host (value: "/").
public const string DefaultVHost = "/"
Field Value
Properties
AmqpUriSslProtocols
The AMQP URI SSL protocols.
public SslProtocols AmqpUriSslProtocols { get; set; }
Property Value
AuthMechanisms
SASL auth mechanisms to use.
public IList<IAuthMechanismFactory> AuthMechanisms { get; set; }
Property Value
AutomaticRecoveryEnabled
Set to false to disable automatic connection recovery. Defaults to true.
public bool AutomaticRecoveryEnabled { get; set; }
Property Value
ClientProperties
Dictionary of client properties to be sent to the server.
public IDictionary<string, object> ClientProperties { get; set; }
Property Value
ClientProvidedName
Default client provided name to be used for connections.
public string ClientProvidedName { get; set; }
Property Value
ConsumerDispatchConcurrency
Set to a value greater than one to enable concurrent processing. For a concurrency greater than one IBasicConsumer will be offloaded to the worker thread pool so it is important to choose the value for the concurrency wisely to avoid thread pool overloading. IAsyncBasicConsumer can handle concurrency much more efficiently due to the non-blocking nature of the consumer. Defaults to 1.
public int ConsumerDispatchConcurrency { get; set; }
Property Value
Remarks
For concurrency greater than one this removes the guarantee that consumers handle messages in the order they receive them. In addition to that consumers need to be thread/concurrency safe.
ContinuationTimeout
Amount of time protocol operations (e.g.
queue.declare
) are allowed to take before
timing out.
public TimeSpan ContinuationTimeout { get; set; }
Property Value
CredentialsProvider
CredentialsProvider and CredentialsRefresher implementations. If set, these overrides UserName / Password
public ICredentialsProvider CredentialsProvider { get; set; }
Property Value
CredentialsRefresher
public ICredentialsRefresher CredentialsRefresher { get; set; }
Property Value
DefaultAddressFamily
Address family used by default. Use InterNetwork to force to IPv4. Use InterNetworkV6 to force to IPv6. Or use Unknown to attempt both IPv6 and IPv4.
public static AddressFamily DefaultAddressFamily { get; set; }
Property Value
DefaultAmqpUriSslProtocols
TLS versions enabled by default: TLSv1.2, v1.1, v1.0.
public static SslProtocols DefaultAmqpUriSslProtocols { get; set; }
Property Value
DispatchConsumersAsync
Set to true will enable a asynchronous consumer dispatcher which is compatible with IAsyncBasicConsumer. Defaults to false.
public bool DispatchConsumersAsync { get; set; }
Property Value
Endpoint
Connection endpoint.
public AmqpTcpEndpoint Endpoint { get; set; }
Property Value
EndpointResolverFactory
Factory function for creating the IEndpointResolver used to generate a list of endpoints for the ConnectionFactory to try in order. The default value creates an instance of the DefaultEndpointResolver using the list of endpoints passed in. The DefaultEndpointResolver shuffles the provided list each time it is requested.
public Func<IEnumerable<AmqpTcpEndpoint>, IEndpointResolver> EndpointResolverFactory { get; set; }
Property Value
HandshakeContinuationTimeout
Amount of time protocol handshake operations are allowed to take before timing out.
public TimeSpan HandshakeContinuationTimeout { get; set; }
Property Value
HostName
The host to connect to.
public string HostName { get; set; }
Property Value
MaxMessageSize
Maximum allowed message size, in bytes, from RabbitMQ. Corresponds to the
rabbit.max_message_size
setting.
public uint MaxMessageSize { get; set; }
Property Value
MemoryPool
The memory pool used for allocating buffers. Default is Shared.
public ArrayPool<byte> MemoryPool { get; set; }
Property Value
NetworkRecoveryInterval
Amount of time client will wait for before re-trying to recover connection.
public TimeSpan NetworkRecoveryInterval { get; set; }
Property Value
Password
Password to use when authenticating to the server.
public string Password { get; set; }
Property Value
Port
The port to connect on. UseDefaultPort indicates the default for the protocol should be used.
public int Port { get; set; }
Property Value
RequestedChannelMax
Maximum channel number to ask for.
public ushort RequestedChannelMax { get; set; }
Property Value
RequestedConnectionTimeout
Timeout setting for connection attempts.
public TimeSpan RequestedConnectionTimeout { get; set; }
Property Value
RequestedFrameMax
Frame-max parameter to ask for (in bytes).
public uint RequestedFrameMax { get; set; }
Property Value
RequestedHeartbeat
Heartbeat timeout to use when negotiating with the server.
public TimeSpan RequestedHeartbeat { get; set; }
Property Value
SocketReadTimeout
Timeout setting for socket read operations.
public TimeSpan SocketReadTimeout { get; set; }
Property Value
SocketWriteTimeout
Timeout setting for socket write operations.
public TimeSpan SocketWriteTimeout { get; set; }
Property Value
Ssl
TLS options setting.
public SslOption Ssl { get; set; }
Property Value
TopologyRecoveryEnabled
Set to false to make automatic connection recovery not recover topology (exchanges, queues, bindings, etc). Defaults to true.
public bool TopologyRecoveryEnabled { get; set; }
Property Value
TopologyRecoveryExceptionHandler
Custom logic for handling topology recovery exceptions that match the specified filters.
public TopologyRecoveryExceptionHandler TopologyRecoveryExceptionHandler { get; set; }
Property Value
TopologyRecoveryFilter
Filter to include/exclude entities from topology recovery. Default filter includes all entities in topology recovery.
public TopologyRecoveryFilter TopologyRecoveryFilter { get; set; }
Property Value
Uri
The uri to use for the connection.
public Uri Uri { get; set; }
Property Value
UseBackgroundThreadsForIO
When set to true, background thread will be used for the I/O loop. NB: No-op
[Obsolete("Currently a no-op. UseBackgroundThreadsForIO will be removed in version 7")]
public bool UseBackgroundThreadsForIO { get; set; }
Property Value
UserName
Username to use when authenticating to the server.
public string UserName { get; set; }
Property Value
VirtualHost
Virtual host to access during this connection.
public string VirtualHost { get; set; }
Property Value
Methods
AuthMechanismFactory(IList<string>)
Given a list of mechanism names supported by the server, select a preferred mechanism, or null if we have none in common.
public IAuthMechanismFactory AuthMechanismFactory(IList<string> mechanismNames)
Parameters
Returns
CreateConnection()
Create a connection to one of the endpoints provided by the IEndpointResolver returned by the EndpointResolverFactory. By default the configured hostname and port are used.
public IConnection CreateConnection()
Returns
Exceptions
- BrokerUnreachableException
When the configured hostname was not reachable.
CreateConnection(IEndpointResolver, string)
Create a connection using an IEndpointResolver.
public IConnection CreateConnection(IEndpointResolver endpointResolver, string clientProvidedName)
Parameters
endpointResolver
IEndpointResolverThe endpointResolver that returns the endpoints to use for the connection attempt.
clientProvidedName
stringApplication-specific connection name, will be displayed in the management UI if RabbitMQ server supports it. This value doesn't have to be unique and cannot be used as a connection identifier, e.g. in HTTP API requests. This value is supposed to be human-readable.
Returns
- IConnection
Open connection
Exceptions
- BrokerUnreachableException
When no hostname was reachable.
CreateConnection(IList<AmqpTcpEndpoint>)
Create a connection using a list of endpoints. By default each endpoint will be tried in a random order until a successful connection is found or the list is exhausted. The selection behaviour can be overridden by configuring the EndpointResolverFactory.
public IConnection CreateConnection(IList<AmqpTcpEndpoint> endpoints)
Parameters
endpoints
IList<AmqpTcpEndpoint>List of endpoints to use for the initial connection and recovery.
Returns
- IConnection
Open connection
Exceptions
- BrokerUnreachableException
When no hostname was reachable.
CreateConnection(IList<AmqpTcpEndpoint>, string)
Create a connection using a list of endpoints. By default each endpoint will be tried in a random order until a successful connection is found or the list is exhausted. The selection behaviour can be overridden by configuring the EndpointResolverFactory.
public IConnection CreateConnection(IList<AmqpTcpEndpoint> endpoints, string clientProvidedName)
Parameters
endpoints
IList<AmqpTcpEndpoint>List of endpoints to use for the initial connection and recovery.
clientProvidedName
stringApplication-specific connection name, will be displayed in the management UI if RabbitMQ server supports it. This value doesn't have to be unique and cannot be used as a connection identifier, e.g. in HTTP API requests. This value is supposed to be human-readable.
Returns
- IConnection
Open connection
Exceptions
- BrokerUnreachableException
When no hostname was reachable.
CreateConnection(IList<string>)
Create a connection using a list of hostnames using the configured port. By default each hostname is tried in a random order until a successful connection is found or the list is exhausted using the DefaultEndpointResolver. The selection behaviour can be overridden by configuring the EndpointResolverFactory.
public IConnection CreateConnection(IList<string> hostnames)
Parameters
Returns
- IConnection
Open connection
Exceptions
- BrokerUnreachableException
When no hostname was reachable.
CreateConnection(IList<string>, string)
Create a connection using a list of hostnames using the configured port. By default each endpoint is tried in a random order until a successful connection is found or the list is exhausted. The selection behaviour can be overridden by configuring the EndpointResolverFactory.
public IConnection CreateConnection(IList<string> hostnames, string clientProvidedName)
Parameters
hostnames
IList<string>List of hostnames to use for the initial connection and recovery.
clientProvidedName
stringApplication-specific connection name, will be displayed in the management UI if RabbitMQ server supports it. This value doesn't have to be unique and cannot be used as a connection identifier, e.g. in HTTP API requests. This value is supposed to be human-readable.
Returns
- IConnection
Open connection
Exceptions
- BrokerUnreachableException
When no hostname was reachable.
CreateConnection(string)
Create a connection to one of the endpoints provided by the IEndpointResolver returned by the EndpointResolverFactory. By default the configured hostname and port are used.
public IConnection CreateConnection(string clientProvidedName)
Parameters
clientProvidedName
stringApplication-specific connection name, will be displayed in the management UI if RabbitMQ server supports it. This value doesn't have to be unique and cannot be used as a connection identifier, e.g. in HTTP API requests. This value is supposed to be human-readable.
Returns
Exceptions
- BrokerUnreachableException
When the configured hostname was not reachable.