Class Tcp.Bound
The sender of a Tcp.Bind command will—in case of success—receive confirmation
in this form. If the bind address indicated a 0 port number, then the contained
localAddress can be used to find out which port was automatically assigned.
Implements
Inherited Members
Namespace: Akka.IO
Assembly: Akka.dll
Syntax
public sealed class Tcp.Bound : Tcp.Event, INoSerializationVerificationNeeded
Constructors
| Edit this page View SourceBound(EndPoint)
Creates a new bound message.
Declaration
public Bound(EndPoint localAddress)
Parameters
| Type | Name | Description |
|---|---|---|
| EndPoint | localAddress | The local listening endpoint of the bound socket. |
Properties
| Edit this page View SourceLocalAddress
The local listening endpoint of the bound socket.
Declaration
public EndPoint LocalAddress { get; }
Property Value
| Type | Description |
|---|---|
| EndPoint |
Methods
| Edit this page View SourceToString()
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string |
Edit this page