Get

org.apache.pekko.cluster.ddata.Replicator.Get
final case class Get[A <: ReplicatedData](key: Key[A], consistency: ReadConsistency, request: Option[Any]) extends Command[A], ReplicatorMessage

Send this message to the local Replicator to retrieve a data value for the given key. The Replicator will reply with one of the GetResponse 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 use ask or maintain local correlation data structures.

Attributes

Source
Replicator.scala
Graph
Supertypes
trait Product
trait Equals
trait Serializable
trait Command[A]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Constructors

def this(key: Key[A], consistency: ReadConsistency)

Java API: Get value from local Replicator, i.e. ReadLocal consistency.

Java API: Get value from local Replicator, i.e. ReadLocal consistency.

Attributes

Source
Replicator.scala
def this(key: Key[A], consistency: ReadConsistency, request: Optional[Any])

Java API: Get value from local Replicator, i.e. ReadLocal consistency.

Java API: Get value from local Replicator, i.e. ReadLocal consistency.

Attributes

Source
Replicator.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product