akka.io
Class UdpConnected$

java.lang.Object
  extended by akka.actor.ExtensionKey<UdpConnectedExt>
      extended by akka.io.UdpConnected$
All Implemented Interfaces:
ExtensionId<UdpConnectedExt>, ExtensionIdProvider

public class UdpConnected$
extends ExtensionKey<UdpConnectedExt>

UDP Extension for Akka’s IO layer.

All contents of the akka.io package is marked “experimental”.

This marker signifies that APIs may still change in response to user feedback through-out the 2.2 release cycle. The implementation itself is considered stable and ready for production use.

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.


Field Summary
static UdpConnected$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
UdpConnected$()
           
 
Method Summary
 UdpConnectedExt get(ActorSystem system)
          Java API: retrieve the UdpConnected extension for the given system.
 
Methods inherited from class akka.actor.ExtensionKey
createExtension, lookup
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface akka.actor.ExtensionId
apply, equals, hashCode
 

Field Detail

MODULE$

public static final UdpConnected$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

UdpConnected$

public UdpConnected$()
Method Detail

get

public UdpConnectedExt get(ActorSystem system)
Java API: retrieve the UdpConnected extension for the given system.