package io
- Alphabetic
- Public
- All
Type Members
- trait BufferPool extends AnyRef
-
abstract
class
Dns extends AnyRef
- Annotations
- @ccompatUsedUntil213()
- class DnsExt extends Extension
- trait DnsProvider extends AnyRef
- class InetAddressDnsProvider extends DnsProvider
-
class
InetAddressDnsResolver extends Actor with ActorLogging
Respects the settings that can be set on the Java runtime via parameters.
- abstract class SelectionHandlerSettings extends AnyRef
- class SimpleDnsCache extends Dns with PeriodicCacheCleanup
- class SimpleDnsManager extends Actor with RequiresMessageQueue[UnboundedMessageQueueSemantics] with ActorLogging
- class TcpExt extends Extension
- class UdpConnectedExt extends Extension
- class UdpExt extends Extension
Value Members
- object Dns extends ExtensionId[DnsExt] with ExtensionIdProvider
-
object
IO
Entry point to Akka’s IO layer.
Entry point to Akka’s IO layer.
- See also
- object Inet
- object IpVersionSelector
- object SimpleDnsCache
- object SimpleDnsManager
-
object
Tcp extends ExtensionId[TcpExt] with ExtensionIdProvider
TCP Extension for Akka’s IO layer.
TCP Extension for Akka’s IO layer.
For a full description of the design and philosophy behind this IO implementation please refer to the Akka online documentation.
In order to open an outbound connection send a Tcp.Connect message to the TcpExt#manager.
In order to start listening for inbound connections send a Tcp.Bind message to the TcpExt#manager.
The Java API for generating TCP commands is available at TcpMessage.
- object TcpMessage
-
object
TcpSO extends SoJavaFactories
Java API for accessing socket options.
-
object
Udp extends ExtensionId[UdpExt] with ExtensionIdProvider
UDP Extension for Akka’s IO layer.
UDP Extension for Akka’s IO layer.
This extension implements the connectionless UDP protocol without calling
connect
on the underlying sockets, i.e. without restricting from whom data can be received. For “connected” UDP mode see UdpConnected.For a full description of the design and philosophy behind this IO implementation please refer to the Akka online documentation.
The Java API for generating UDP commands is available at UdpMessage.
- Annotations
- @ccompatUsedUntil213()
-
object
UdpConnected extends ExtensionId[UdpConnectedExt] with ExtensionIdProvider
UDP Extension for Akka’s IO layer.
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.
The Java API for generating UDP commands is available at UdpConnectedMessage.
- Annotations
- @ccompatUsedUntil213()
-
object
UdpConnectedMessage
Java API: factory methods for the message types used when communicating with the UdpConnected service.
-
object
UdpMessage
Java API: factory methods for the message types used when communicating with the Udp service.
- object UdpSO extends SoJavaFactories