Class Tcp.Connected
The connection actor sends this message either to the sender of a Tcp.Connect
command (for outbound) or to the handler for incoming connections designated
in the Tcp.Bind message. The connection is characterized by the remoteAddress
and localAddress
TCP endpoints.
Inheritance
Tcp.Connected
Assembly: Akka.dll
Syntax
public sealed class Tcp.Connected : Tcp.Event, INoSerializationVerificationNeeded
Constructors
|
Edit this page
View Source
Connected(EndPoint, EndPoint)
Declaration
public Connected(EndPoint remoteAddress, EndPoint localAddress)
Parameters
Properties
|
Edit this page
View Source
LocalAddress
The local endpoint of the connection.
Declaration
public EndPoint LocalAddress { get; }
Property Value
|
Edit this page
View Source
RemoteAddress
The remote endpoint of the connection.
Declaration
public EndPoint RemoteAddress { get; }
Property Value
Methods
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements
Extension Methods