Show / Hide Table of Contents

    Class AmqpConnectionDetails

    Inheritance
    Object
    AmqpConnectionDetails
    Implements
    IAmqpConnectionSettings
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Namespace: Akka.Streams.Amqp.RabbitMq
    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
    Type Description
    Nullable<Boolean>
    | Improve this Doc View Source

    ClientProvidedName

    Declaration
    public string ClientProvidedName { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    ConnectionTimeout

    Declaration
    public TimeSpan? ConnectionTimeout { get; }
    Property Value
    Type Description
    Nullable<TimeSpan>
    | Improve this Doc View Source

    Credentials

    Declaration
    public AmqpCredentials? Credentials { get; }
    Property Value
    Type Description
    Nullable<AmqpCredentials>
    | Improve this Doc View Source

    HandshakeTimeout

    Declaration
    public TimeSpan? HandshakeTimeout { get; }
    Property Value
    Type Description
    Nullable<TimeSpan>
    | Improve this Doc View Source

    HostAndPortList

    Declaration
    public IReadOnlyList<(string host, int port)> HostAndPortList { get; }
    Property Value
    Type Description
    IReadOnlyList<System.ValueTuple<String, Int32>>
    | Improve this Doc View Source

    NetworkRecoveryInterval

    Declaration
    public TimeSpan? NetworkRecoveryInterval { get; }
    Property Value
    Type Description
    Nullable<TimeSpan>
    | Improve this Doc View Source

    RequestedHeartbeat

    Declaration
    public ushort? RequestedHeartbeat { get; }
    Property Value
    Type Description
    Nullable<UInt16>
    | 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
    Type Description
    Nullable<Boolean>
    | Improve this Doc View Source

    VirtualHost

    Declaration
    public string VirtualHost { get; }
    Property Value
    Type Description
    String

    Methods

    | Improve this Doc View Source

    Create(String, Int32)

    Declaration
    public static AmqpConnectionDetails Create(string host, int port)
    Parameters
    Type Name Description
    String host
    Int32 port
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    String
    Overrides
    Object.ToString()
    | Improve this Doc View Source

    WithAutomaticRecoveryEnabled(Boolean)

    Declaration
    public AmqpConnectionDetails WithAutomaticRecoveryEnabled(bool automaticRecoveryEnabled)
    Parameters
    Type Name Description
    Boolean automaticRecoveryEnabled
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithConnectionTimeout(TimeSpan)

    Declaration
    public AmqpConnectionDetails WithConnectionTimeout(TimeSpan connectionTimeout)
    Parameters
    Type Name Description
    TimeSpan connectionTimeout
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithCredentials(AmqpCredentials)

    Declaration
    public AmqpConnectionDetails WithCredentials(AmqpCredentials credentials)
    Parameters
    Type Name Description
    AmqpCredentials credentials
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithHandshakeTimeout(TimeSpan)

    Declaration
    public AmqpConnectionDetails WithHandshakeTimeout(TimeSpan handshakeTimeout)
    Parameters
    Type Name Description
    TimeSpan handshakeTimeout
    Returns
    Type Description
    AmqpConnectionDetails
    | 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
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithNetworkRecoveryInterval(TimeSpan)

    Declaration
    public AmqpConnectionDetails WithNetworkRecoveryInterval(TimeSpan networkRecoveryInterval)
    Parameters
    Type Name Description
    TimeSpan networkRecoveryInterval
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithRequestedHeartbeat(UInt16)

    Declaration
    public AmqpConnectionDetails WithRequestedHeartbeat(ushort requestedHeartbeat)
    Parameters
    Type Name Description
    UInt16 requestedHeartbeat
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithSsl(SslOption)

    Declaration
    public AmqpConnectionDetails WithSsl(SslOption sslOption)
    Parameters
    Type Name Description
    RabbitMQ.Client.SslOption sslOption
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithTopologyRecoveryEnabled(Boolean)

    Declaration
    public AmqpConnectionDetails WithTopologyRecoveryEnabled(bool topologyRecoveryEnabled)
    Parameters
    Type Name Description
    Boolean topologyRecoveryEnabled
    Returns
    Type Description
    AmqpConnectionDetails
    | Improve this Doc View Source

    WithVirtualHost(String)

    Declaration
    public AmqpConnectionDetails WithVirtualHost(string virtualHost)
    Parameters
    Type Name Description
    String virtualHost
    Returns
    Type Description
    AmqpConnectionDetails

    Implements

    IAmqpConnectionSettings
    • Improve this Doc
    • View Source
    Back to top Copyright © 2013-2020 Akka.NET project
    Generated by DocFX