Search Results for

    Show / Hide Table of Contents

    Class RemoteSettings

    This class represents configuration information used when setting up remoting.

    Inheritance
    object
    RemoteSettings
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Akka.Remote
    Assembly: Akka.Remote.dll
    Syntax
    public class RemoteSettings

    Constructors

    | Edit this page View Source

    RemoteSettings(Config)

    Initializes a new instance of the RemoteSettings class.

    Declaration
    public RemoteSettings(Config config)
    Parameters
    Type Name Description
    Config config

    The configuration to use when setting up remoting.

    Fields

    | Edit this page View Source

    AkkaScheme

    Used for augmenting outbound messages with the Akka scheme

    Declaration
    public static readonly string AkkaScheme
    Field Value
    Type Description
    string

    Properties

    | Edit this page View Source

    Adapters

    TBD

    Declaration
    public IDictionary<string, string> Adapters { get; set; }
    Property Value
    Type Description
    IDictionary<string, string>
    | Edit this page View Source

    BackoffPeriod

    TBD

    Declaration
    public TimeSpan BackoffPeriod { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    CommandAckTimeout

    TBD

    Declaration
    public TimeSpan CommandAckTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    Config

    TBD

    Declaration
    public Config Config { get; }
    Property Value
    Type Description
    Config
    | Edit this page View Source

    Dispatcher

    TBD

    Declaration
    public string Dispatcher { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    FlushWait

    TBD

    Declaration
    public TimeSpan FlushWait { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    InitialSysMsgDeliveryTimeout

    TBD

    Declaration
    public TimeSpan InitialSysMsgDeliveryTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    LogBufferSizeExceeding

    TBD

    Declaration
    public int LogBufferSizeExceeding { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    LogReceive

    TBD

    Declaration
    public bool LogReceive { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    LogSend

    TBD

    Declaration
    public bool LogSend { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    QuarantineDuration

    TBD

    Declaration
    public TimeSpan? QuarantineDuration { get; set; }
    Property Value
    Type Description
    TimeSpan?
    | Edit this page View Source

    QuarantineSilentSystemTimeout

    TBD

    Declaration
    public TimeSpan QuarantineSilentSystemTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    RemoteLifecycleEventsLogLevel

    TBD

    Declaration
    public string RemoteLifecycleEventsLogLevel { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    RetryGateClosedFor

    TBD

    Declaration
    public TimeSpan RetryGateClosedFor { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    ShutdownTimeout

    TBD

    Declaration
    public TimeSpan ShutdownTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    StartupTimeout

    TBD

    Declaration
    public TimeSpan StartupTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    SysMsgAckTimeout

    TBD

    Declaration
    public TimeSpan SysMsgAckTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    SysMsgBufferSize

    TBD

    Declaration
    public int SysMsgBufferSize { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    SysResendLimit

    TBD

    Declaration
    public int SysResendLimit { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    SysResendTimeout

    TBD

    Declaration
    public TimeSpan SysResendTimeout { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    TransportNames

    TBD

    Declaration
    public IList<string> TransportNames { get; set; }
    Property Value
    Type Description
    IList<string>
    | Edit this page View Source

    Transports

    TBD

    Declaration
    public RemoteSettings.TransportSettings[] Transports { get; set; }
    Property Value
    Type Description
    TransportSettings[]
    | Edit this page View Source

    TrustedSelectionPaths

    TBD

    Declaration
    public HashSet<string> TrustedSelectionPaths { get; set; }
    Property Value
    Type Description
    HashSet<string>
    | Edit this page View Source

    UntrustedMode

    TBD

    Declaration
    public bool UntrustedMode { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    UsePassiveConnections

    TBD

    Declaration
    public bool UsePassiveConnections { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    WatchFailureDetectorConfig

    TBD

    Declaration
    public Config WatchFailureDetectorConfig { get; set; }
    Property Value
    Type Description
    Config
    | Edit this page View Source

    WatchFailureDetectorImplementationClass

    TBD

    Declaration
    public string WatchFailureDetectorImplementationClass { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    WatchHeartBeatInterval

    TBD

    Declaration
    public TimeSpan WatchHeartBeatInterval { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    WatchHeartbeatExpectedResponseAfter

    TBD

    Declaration
    public TimeSpan WatchHeartbeatExpectedResponseAfter { get; set; }
    Property Value
    Type Description
    TimeSpan
    | Edit this page View Source

    WatchUnreachableReaperInterval

    TBD

    Declaration
    public TimeSpan WatchUnreachableReaperInterval { get; set; }
    Property Value
    Type Description
    TimeSpan

    Methods

    | Edit this page View Source

    ConfigureDispatcher(Props)

    TBD

    Declaration
    public Props ConfigureDispatcher(Props props)
    Parameters
    Type Name Description
    Props props

    TBD

    Returns
    Type Description
    Props

    TBD

    Extension Methods

    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET