final case class Delete[A <: ReplicatedData](key: Key[A], consistency: WriteConsistency, request: Option[Any] = None) extends Command[A] with NoSerializationVerificationNeeded with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- Delete
- Serializable
- Product
- Equals
- NoSerializationVerificationNeeded
- Command
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Delete(key: Key[A], consistency: WriteConsistency, request: [Any])
- new Delete(key: Key[A], consistency: WriteConsistency)
- new Delete(key: Key[A], consistency: WriteConsistency, request: [Any] = None)
Send this message to the local
Replicator
to delete a data value for the givenkey
. TheReplicator
will reply with one of the DeleteResponse messages.The optional
request
context is included in the reply messages. This is a convenient way to pass contextual information (e.g. original sender) without having to useask
or maintain local correlation data structures.