final case class GetSuccess[A <: ReplicatedData](key: Key[A], request: Option[Any])(data: A) extends GetResponse[A] with ReplicatorMessage with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- GetSuccess
- Product
- Equals
- ReplicatorMessage
- Serializable
- GetResponse
- NoSerializationVerificationNeeded
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def dataValue: A
The data value.
The data value. Use #get to get the fully typed value.
- def get[T <: ReplicatedData](key: Key[T]): T
The data value, with correct type.
The data value, with correct type. Scala pattern matching cannot infer the type from the
key
parameter. - def getRequest: [Any]
Java API
Java API
- Definition Classes
- GetResponse
- val key: Key[A]
- Definition Classes
- → GetResponse
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val request: [Any]
- Definition Classes
- → GetResponse
Reply from
Get
. The data value is retrieved with #get using the typed key.