Class Tcp.TcpListenerStatistics
A set of statistics from a specific TCP listener.
Inherited Members
Namespace: Akka.IO
Assembly: Akka.dll
Syntax
public sealed record Tcp.TcpListenerStatistics : Tcp.ITcpQuery, INoSerializationVerificationNeeded, IEquatable<Tcp.TcpListenerStatistics>
Remarks
These are ongoing, rolling statistics that are updated as the listener processes incoming connections. They will not reset unless the listener is killed.
Properties
| Edit this page View SourceAcceptedIncomingConnections
Total number of accepted incoming connections
Declaration
public long AcceptedIncomingConnections { get; init; }
Property Value
Type | Description |
---|---|
long |
FailedIncomingConnections
Incoming connections that could not be accepted
Declaration
public long FailedIncomingConnections { get; init; }
Property Value
Type | Description |
---|---|
long |
IncomingConnectionsClosed
Total number of incoming connections that were closed
Declaration
public long IncomingConnectionsClosed { get; init; }
Property Value
Type | Description |
---|---|
long |
RetriedIncomingConnections
Incoming connections that had to be retried
Declaration
public long RetriedIncomingConnections { get; init; }
Property Value
Type | Description |
---|---|
long |