Interface ReplicatedStorage.PartitionedKey
-
- All Superinterfaces:
ReplicatedStorage.Key
- Enclosing interface:
- ReplicatedStorage
public static interface ReplicatedStorage.PartitionedKey extends ReplicatedStorage.Key
An optional extension interface to ReplicatedStorage.Key that allows a resource adaptor to provide a specific partition key with a regular key. The partition key is a session-related hash that can be used by a key/value store, for example, to aggregate related state.
If a replicated storage entry is created with a key implementing this interface, then future access to that entry is only possible with an identical key, ie. one that returns the same values from
ReplicatedStorage.Key.getData()
andgetPartitionKey()
.- Since:
- Rhino 3.0.0
- See Also:
PartitioningFacility
,PartitionedActivityHandle
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getPartitionKey()
-
Methods inherited from interface com.opencloud.rhino.facilities.replicatedstorage.ReplicatedStorage.Key
getData
-
-