package io
- Alphabetic
- Public
- Protected
Type Members
- trait BufferPool extends AnyRef
- abstract class Dns extends AnyRef
Not for user extension.
Not for user extension.
This used to be a supported extension point but will be removed in future versions of Akka.
- Annotations
- @ccompatUsedUntil213() @DoNotInherit()
- class DnsExt extends Extension
- class InetAddressDnsProvider extends DnsProvider
INTERNAL API
INTERNAL API
- Annotations
- @nowarn() @InternalApi()
- class InetAddressDnsResolver extends Actor with ActorLogging
INTERNAL API
INTERNAL API
Respects the settings that can be set on the Java runtime via parameters.
- Annotations
- @nowarn() @InternalApi()
- abstract class SelectionHandlerSettings extends AnyRef
- class SimpleDnsCache extends Dns with PeriodicCacheCleanup with NoSerializationVerificationNeeded
- final class SimpleDnsManager extends Actor with RequiresMessageQueue[UnboundedMessageQueueSemantics] with ActorLogging
- class TcpExt extends Extension
- class UdpConnectedExt extends Extension
- class UdpExt extends Extension
Deprecated Type Members
- trait DnsProvider extends AnyRef
Where as it is possible to plug in alternative DNS implementations it is not recommended.
Where as it is possible to plug in alternative DNS implementations it is not recommended.
It is expected that this will be deprecated/removed in future Akka versions
TODO make private and remove deprecated in 2.7.0
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.0) Overriding the DNS implementation will be removed in future versions of Akka
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
INTERNAL API
INTERNAL API
- Annotations
- @InternalApi()
- 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