Interface CacheResult
-
public interface CacheResult
Represents a response from aSharedData
operation.
-
-
Method Summary
Modifier and Type Method Description java.lang.String
getKey()
Gets the key or null to the object associated with the result.CacheOperationStatus
getStatus()
Gets the status of the cache operation.byte[]
getValue()
Get the object returned from a Get operation.
-
-
-
Method Detail
-
getKey
java.lang.String getKey()
Gets the key or null to the object associated with the result.- Returns:
- the key or null.
-
getValue
byte[] getValue()
Get the object returned from a Get operation.- Returns:
- the object or null.
-
getStatus
CacheOperationStatus getStatus()
Gets the status of the cache operation.- Returns:
- the operation status.
-
-