final case class Send(payload: ByteString, target: InetSocketAddress, ack: Event) extends Command with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Send
- Serializable
- Product
- Equals
- Command
- Message
- HasFailureMessage
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Send(payload: ByteString, target: InetSocketAddress, ack: Event)
Value Members
- val ack: Event
- def failureMessage: CommandFailed
- Definition Classes
- Command → HasFailureMessage
- val payload: ByteString
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val target: InetSocketAddress
- def wantsAck: Boolean
This message is understood by the “simple sender” which can be obtained by sending the SimpleSender query to the UdpExt#manager as well as by the listener actors which are created in response to Bind. It will send the given payload data as one UDP datagram to the given target address. The UDP actor will respond with CommandFailed if the send could not be enqueued to the O/S kernel because the send buffer was full. If the given
ack
is not of type 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 Bind in that case.