final case class Update[A <: ReplicatedData](key: Key[A], writeConsistency: WriteConsistency, request: Option[Any])(modify: (Option[A]) => A) extends Command[A] with NoSerializationVerificationNeeded with Product with Serializable
Send this message to the local Replicator
to update a data value for the
given key
. The Replicator
will reply with one of the UpdateResponse messages.
Note that the companion object provides apply
functions for convenient
construction of this message.
The current data value for the key
is passed as parameter to the modify
function.
It is None
if there is no value for the key
, and otherwise Some(data)
. The function
is supposed to return the new value of the data, which will then be replicated according to
the given writeConsistency
.
The modify
function is called by the Replicator
actor and must therefore be a pure
function that only uses the data parameter and stable fields from enclosing scope. It must
for example not access sender()
reference of an enclosing actor.
- Source
- Replicator.scala
- Alphabetic
- By Inheritance
- Update
- Serializable
- Product
- Equals
- NoSerializationVerificationNeeded
- Command
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Update(key: Key[A], initial: A, writeConsistency: WriteConsistency, request: Optional[Any], modify: Function[A, A])
Java API: Modify value of local
Replicator
and replicate with givenwriteConsistency
.Java API: Modify value of local
Replicator
and replicate with givenwriteConsistency
.The current value for the
key
is passed to themodify
function. If there is no current data value for thekey
theinitial
value will be passed to themodify
function.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 local correlation data structures. - new Update(key: Key[A], initial: A, writeConsistency: WriteConsistency, modify: Function[A, A])
Java API: Modify value of local
Replicator
and replicate with givenwriteConsistency
.Java API: Modify value of local
Replicator
and replicate with givenwriteConsistency
.The current value for the
key
is passed to themodify
function. If there is no current data value for thekey
theinitial
value will be passed to themodify
function. - new Update(key: Key[A], writeConsistency: WriteConsistency, request: Option[Any])(modify: (Option[A]) => A)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Update[A], B)
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- def ensuring(cond: (Update[A]) => Boolean, msg: => Any): Update[A]
- def ensuring(cond: (Update[A]) => Boolean): Update[A]
- def ensuring(cond: Boolean, msg: => Any): Update[A]
- def ensuring(cond: Boolean): Update[A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val key: Key[A]
- val modify: (Option[A]) => A
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val request: Option[Any]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- val writeConsistency: WriteConsistency
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Update[A] toStringFormat[Update[A]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (Update[A], B)
- Implicit
- This member is added by an implicit conversion from Update[A] toArrowAssoc[Update[A]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.