NATS Streaming .NET Client
0.1.5
The nats.io .NET Streaming C# Client
|
Static Public Attributes | |
static readonly string | Version = "0.1.5" |
static readonly string | DefaultNatsURL = "nats://localhost:4222" |
static readonly int | DefaultConnectWait = 2000 |
static readonly string | DefaultDiscoverPrefix = "_STAN.discover" |
static readonly string | DefaultACKPrefix = "_STAN.acks" |
static readonly long | DefaultMaxPubAcksInflight = 16384 |
static readonly long | DefaultAckWait = 30000 |
static readonly int | DefaultMaxInflight = 1024 |
static readonly int | DefaultPingInterval = 5000 |
static readonly int | DefaultPingMaxOut = 3 |
NATS Streaming client constants.
|
static |
DefaultACKPrefix is the prefix subject used to send ACKs to the NATS Streaming server.
|
static |
DefaultAckWait indicates how long the server should wait for an ACK before resending a message.
|
static |
DefaultConnectWait is the default timeout used for the connect operation.
|
static |
DefaultDiscoverPrefix is the prefix subject used to connect to the NATS Streaming server.
|
static |
DefaultMaxInflight indicates how many messages with outstanding ACKs the server can send.
|
static |
DefaultMaxPubAcksInflight is the default maximum number of published messages without outstanding ACKs from the server.
|
static |
DefaultNatsURL is the default URL the client connects to.
|
static |
DefaultPingInterval is the default interval (in milliseconds) at which a connection sends a PING to the server.
|
static |
DefaultPingMaxOut is the number of PINGs without a response before the connection is considered lost.
|
static |
NATS C# streaming client version.