Package akka.io
Class UdpMessage$
- java.lang.Object
-
- akka.io.UdpMessage$
-
public class UdpMessage$ extends java.lang.Object
Java API: factory methods for the message types used when communicating with the Udp service.
-
-
Field Summary
Fields Modifier and Type Field Description static UdpMessage$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description UdpMessage$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Udp.Command
bind(ActorRef handler, java.net.InetSocketAddress endpoint)
Bind without specifying options.Udp.Command
bind(ActorRef handler, java.net.InetSocketAddress endpoint, java.lang.Iterable<Inet.SocketOption> options)
Send this message to theUdpExt.manager()
in order to bind to the given local port (or an automatically assigned one if the port number is zero).Udp.NoAck
noAck()
DefaultUdp.NoAck
instance which is used when no acknowledgment information is explicitly provided.Udp.NoAck
noAck(java.lang.Object token)
EachUdp.Send
can optionally request a positive acknowledgment to be sent to the commanding actor.Udp.Command
resumeReading()
This message must be sent to the listener actor to re-enable reading from the socket after aUdp.SuspendReading
command.Udp.Command
send(ByteString payload, java.net.InetSocketAddress target)
The same assend(payload, target, noAck())
.Udp.Command
send(ByteString payload, java.net.InetSocketAddress target, Udp.Event ack)
This message is understood by the “simple sender” which can be obtained by sending theUdp.SimpleSender
query to theUdpExt.manager()
as well as by the listener actors which are created in response toUdp.Bind
.Udp.Command
simpleSender()
Retrieve a simple sender without specifying options.Udp.Command
simpleSender(java.lang.Iterable<Inet.SocketOption> options)
Retrieve a reference to a “simple sender” actor of the UDP extension.Udp.Command
suspendReading()
Send this message to a listener actor (which sent aUdp.Bound
message) to have it stop reading datagrams from the network.Udp.Command
unbind()
Send this message to the listener actor that previously sent aUdp.Bound
message in order to close the listening socket.
-
-
-
Field Detail
-
MODULE$
public static final UdpMessage$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
noAck
public Udp.NoAck noAck(java.lang.Object token)
EachUdp.Send
can optionally request a positive acknowledgment to be sent to the commanding actor. If such notification is not desired theUdp.Send.ack()
must be set to an instance of this class. The token contained within can be used to recognize which write failed when receiving aUdp.CommandFailed
message.
-
noAck
public Udp.NoAck noAck()
DefaultUdp.NoAck
instance which is used when no acknowledgment information is explicitly provided. Its “token” isnull
.
-
send
public Udp.Command send(ByteString payload, java.net.InetSocketAddress target, Udp.Event ack)
This message is understood by the “simple sender” which can be obtained by sending theUdp.SimpleSender
query to theUdpExt.manager()
as well as by the listener actors which are created in response toUdp.Bind
. It will send the given payload data as one UDP datagram to the given target address. The UDP actor will respond withUdp.CommandFailed
if the send could not be enqueued to the O/S kernel because the send buffer was full. If the givenack
is not of typeUdp.NoAck
the UDP actor will reply with the given object as soon as the datagram has been successfully enqueued to the O/S kernel.The sending UDP socket’s address belongs to the “simple sender” which does not handle inbound datagrams and sends from an ephemeral port; therefore sending using this mechanism is not suitable if replies are expected, use
Udp.Bind
in that case.
-
send
public Udp.Command send(ByteString payload, java.net.InetSocketAddress target)
The same assend(payload, target, noAck())
.
-
bind
public Udp.Command bind(ActorRef handler, java.net.InetSocketAddress endpoint, java.lang.Iterable<Inet.SocketOption> options)
Send this message to theUdpExt.manager()
in order to bind to the given local port (or an automatically assigned one if the port number is zero). The listener actor for the newly bound port will reply with aUdp.Bound
message, or the manager will reply with aUdp.CommandFailed
message.
-
bind
public Udp.Command bind(ActorRef handler, java.net.InetSocketAddress endpoint)
Bind without specifying options.
-
unbind
public Udp.Command unbind()
Send this message to the listener actor that previously sent aUdp.Bound
message in order to close the listening socket. The recipient will reply with anUdp.Unbound
message.
-
simpleSender
public Udp.Command simpleSender(java.lang.Iterable<Inet.SocketOption> options)
Retrieve a reference to a “simple sender” actor of the UDP extension. The newly created “simple sender” will reply with theUdp.SimpleSenderReady
notification.The “simple sender” is a convenient service for being able to send datagrams when the originating address is meaningless, i.e. when no reply is expected.
The “simple sender” will not stop itself, you will have to send it a
PoisonPill
when you want to close the socket.
-
simpleSender
public Udp.Command simpleSender()
Retrieve a simple sender without specifying options.
-
suspendReading
public Udp.Command suspendReading()
Send this message to a listener actor (which sent aUdp.Bound
message) to have it stop reading datagrams from the network. If the O/S kernel’s receive buffer runs full then subsequent datagrams will be silently discarded. Re-enable reading from the socket using theUdp.ResumeReading
command.
-
resumeReading
public Udp.Command resumeReading()
This message must be sent to the listener actor to re-enable reading from the socket after aUdp.SuspendReading
command.
-
-