Class UdpConnected
UDP Extension for Akka's IO layer.
This extension implements the connectionless UDP protocol with
calling connect on the underlying sockets, i.e. with restricting
from whom data can be received. For "unconnected" UDP mode see Udp.
For a full description of the design and philosophy behind this IO implementation please refer to the Akka online documentation.
Inherited Members
Namespace: Akka.IO
Assembly: Akka.dll
Syntax
public class UdpConnected : ExtensionIdProvider<UdpConnectedExt>, IExtensionId<UdpConnectedExt>, IExtensionId
Fields
| Edit this page View SourceInstance
Singleton instance of the UdpConnected extension.
Declaration
public static readonly UdpConnected Instance
Field Value
| Type | Description |
|---|---|
| UdpConnected |
Methods
| Edit this page View SourceCreateExtension(ExtendedActorSystem)
Creates a new UdpConnected extension instance for the specified actor system.
Declaration
public override UdpConnectedExt CreateExtension(ExtendedActorSystem system)
Parameters
| Type | Name | Description |
|---|---|---|
| ExtendedActorSystem | system | The actor system to create the extension for. |
Returns
| Type | Description |
|---|---|
| UdpConnectedExt | A new UdpConnected extension instance. |
Edit this page