Class AmqpConnectionDetails
Inheritance
AmqpConnectionDetails
Assembly: Akka.Streams.Amqp.RabbitMq.dll
Syntax
public sealed class AmqpConnectionDetails : IAmqpConnectionSettings
Properties
|
Improve this Doc
View Source
AutomaticRecoveryEnabled
Declaration
public bool? AutomaticRecoveryEnabled { get; }
Property Value
|
Improve this Doc
View Source
ClientProvidedName
Declaration
public string ClientProvidedName { get; set; }
Property Value
|
Improve this Doc
View Source
ConnectionTimeout
Declaration
public TimeSpan? ConnectionTimeout { get; }
Property Value
|
Improve this Doc
View Source
Credentials
Declaration
public AmqpCredentials? Credentials { get; }
Property Value
|
Improve this Doc
View Source
HandshakeTimeout
Declaration
public TimeSpan? HandshakeTimeout { get; }
Property Value
|
Improve this Doc
View Source
HostAndPortList
Declaration
public IReadOnlyList<(string host, int port)> HostAndPortList { get; }
Property Value
|
Improve this Doc
View Source
NetworkRecoveryInterval
Declaration
public TimeSpan? NetworkRecoveryInterval { get; }
Property Value
|
Improve this Doc
View Source
RequestedHeartbeat
Declaration
public ushort? RequestedHeartbeat { get; }
Property Value
|
Improve this Doc
View Source
Ssl
Declaration
public SslOption Ssl { get; }
Property Value
Type |
Description |
RabbitMQ.Client.SslOption |
|
|
Improve this Doc
View Source
TopologyRecoveryEnabled
Declaration
public bool? TopologyRecoveryEnabled { get; }
Property Value
|
Improve this Doc
View Source
VirtualHost
Declaration
public string VirtualHost { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create(String, Int32)
Declaration
public static AmqpConnectionDetails Create(string host, int port)
Parameters
Returns
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
|
Improve this Doc
View Source
WithAutomaticRecoveryEnabled(Boolean)
Declaration
public AmqpConnectionDetails WithAutomaticRecoveryEnabled(bool automaticRecoveryEnabled)
Parameters
Type |
Name |
Description |
Boolean |
automaticRecoveryEnabled |
|
Returns
|
Improve this Doc
View Source
WithConnectionTimeout(TimeSpan)
Declaration
public AmqpConnectionDetails WithConnectionTimeout(TimeSpan connectionTimeout)
Parameters
Type |
Name |
Description |
TimeSpan |
connectionTimeout |
|
Returns
|
Improve this Doc
View Source
WithCredentials(AmqpCredentials)
Declaration
public AmqpConnectionDetails WithCredentials(AmqpCredentials credentials)
Parameters
Returns
|
Improve this Doc
View Source
WithHandshakeTimeout(TimeSpan)
Declaration
public AmqpConnectionDetails WithHandshakeTimeout(TimeSpan handshakeTimeout)
Parameters
Type |
Name |
Description |
TimeSpan |
handshakeTimeout |
|
Returns
|
Improve this Doc
View Source
WithHostsAndPorts((String host, Int32 port), (String host, Int32 port)[])
Declaration
public AmqpConnectionDetails WithHostsAndPorts((string host, int port) hostAndPort, params (string host, int port)[] hostAndPortList)
Parameters
Type |
Name |
Description |
System.ValueTuple<String, Int32> |
hostAndPort |
|
System.ValueTuple<String, Int32>[] |
hostAndPortList |
|
Returns
|
Improve this Doc
View Source
WithNetworkRecoveryInterval(TimeSpan)
Declaration
public AmqpConnectionDetails WithNetworkRecoveryInterval(TimeSpan networkRecoveryInterval)
Parameters
Type |
Name |
Description |
TimeSpan |
networkRecoveryInterval |
|
Returns
|
Improve this Doc
View Source
WithRequestedHeartbeat(UInt16)
Declaration
public AmqpConnectionDetails WithRequestedHeartbeat(ushort requestedHeartbeat)
Parameters
Type |
Name |
Description |
UInt16 |
requestedHeartbeat |
|
Returns
|
Improve this Doc
View Source
WithSsl(SslOption)
Declaration
public AmqpConnectionDetails WithSsl(SslOption sslOption)
Parameters
Type |
Name |
Description |
RabbitMQ.Client.SslOption |
sslOption |
|
Returns
|
Improve this Doc
View Source
WithTopologyRecoveryEnabled(Boolean)
Declaration
public AmqpConnectionDetails WithTopologyRecoveryEnabled(bool topologyRecoveryEnabled)
Parameters
Type |
Name |
Description |
Boolean |
topologyRecoveryEnabled |
|
Returns
|
Improve this Doc
View Source
WithVirtualHost(String)
Declaration
public AmqpConnectionDetails WithVirtualHost(string virtualHost)
Parameters
Type |
Name |
Description |
String |
virtualHost |
|
Returns
Implements