Packages

final case class Send(payload: ByteString, ack: Any) extends Command with Product with Serializable

This message is understood by the connection actors to send data to their designated destination. The connection 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 connection actor will reply with the given object as soon as the datagram has been successfully enqueued to the O/S kernel.

Source
UdpConnected.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Send
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Command
  7. Message
  8. HasFailureMessage
  9. AnyRef
  10. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Send(payload: ByteString, ack: Any)

Value Members

  1. val ack: Any
  2. def failureMessage: CommandFailed
    Definition Classes
    Command → HasFailureMessage
  3. val payload: ByteString
  4. def wantsAck: Boolean