Package akka.io
Class Udp.Bind
- java.lang.Object
-
- akka.io.Udp.Bind
-
- All Implemented Interfaces:
akka.io.SelectionHandler.HasFailureMessage
,Udp.Command
,Udp.Message
,java.io.Serializable
,scala.Equals
,scala.Product
- Enclosing class:
- Udp
public static final class Udp.Bind extends java.lang.Object implements Udp.Command, scala.Product, java.io.Serializable
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.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Bind(ActorRef handler, java.net.InetSocketAddress localAddress, scala.collection.immutable.Iterable<Inet.SocketOption> options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canEqual(java.lang.Object x$1)
Udp.Bind
copy(ActorRef handler, java.net.InetSocketAddress localAddress, scala.collection.immutable.Iterable<Inet.SocketOption> options)
ActorRef
copy$default$1()
java.net.InetSocketAddress
copy$default$2()
scala.collection.immutable.Iterable<Inet.SocketOption>
copy$default$3()
boolean
equals(java.lang.Object x$1)
ActorRef
handler()
int
hashCode()
java.net.InetSocketAddress
localAddress()
scala.collection.immutable.Iterable<Inet.SocketOption>
options()
int
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface akka.io.Udp.Command
failureMessage
-
-
-
-
Constructor Detail
-
Bind
public Bind(ActorRef handler, java.net.InetSocketAddress localAddress, scala.collection.immutable.Iterable<Inet.SocketOption> options)
-
-
Method Detail
-
handler
public ActorRef handler()
-
localAddress
public java.net.InetSocketAddress localAddress()
-
options
public scala.collection.immutable.Iterable<Inet.SocketOption> options()
-
copy
public Udp.Bind copy(ActorRef handler, java.net.InetSocketAddress localAddress, scala.collection.immutable.Iterable<Inet.SocketOption> options)
-
copy$default$1
public ActorRef copy$default$1()
-
copy$default$2
public java.net.InetSocketAddress copy$default$2()
-
copy$default$3
public scala.collection.immutable.Iterable<Inet.SocketOption> copy$default$3()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-