akka

io

package io

Visibility
  1. Public
  2. All

Type Members

  1. trait BufferPool extends AnyRef

  2. abstract class SelectionHandlerSettings extends AnyRef

  3. class TcpExt extends Extension

  4. class UdpConnectedExt extends Extension

  5. class UdpExt extends Extension

Value Members

  1. object IO

    Entry point to Akka’s IO layer.

    Entry point to Akka’s IO layer.

    See also

    the Akka online documentation

  2. object Inet

  3. 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 connetions send a Tcp.Bind message to the TcpExt#manager.

    The Java API for generating TCP commands is available at TcpMessage.

  4. object TcpMessage

  5. object TcpSO extends SoJavaFactories

    Java API for accessing socket options.

  6. 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.

  7. 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.

  8. object UdpConnectedMessage

    Java API: factory methods for the message types used when communicating with the UdpConnected service.

  9. object UdpMessage

    Java API: factory methods for the message types used when communicating with the Udp service.

  10. object UdpSO extends SoJavaFactories

Ungrouped