<T> boolean |
AbstractStorageService.create(String context,
String key,
T value,
StorageSerializer<T> serializer,
Long expiration) |
Creates a new record in the store with an expiration, using a custom serialization
process for an arbitrary object.
|
<T> boolean |
StorageService.create(String context,
String key,
T value,
StorageSerializer<T> serializer,
Long expiration) |
Creates a new record in the store with an expiration, using a custom serialization
process for an arbitrary object.
|
Type |
StorageRecord.getValue(StorageSerializer<Type> serializer,
String context,
String key) |
Get the record value, using a custom deserialization process.
|
protected void |
StorageRecord.setValue(Type instance,
StorageSerializer<Type> serializer) |
Set the record value, using a custom serialization process.
|
<T> boolean |
AbstractStorageService.update(String context,
String key,
T value,
StorageSerializer<T> serializer,
Long expiration) |
Updates an existing record in the store using a custom serialization strategy.
|
<T> boolean |
StorageService.update(String context,
String key,
T value,
StorageSerializer<T> serializer,
Long expiration) |
Updates an existing record in the store using a custom serialization strategy.
|
<T> Long |
AbstractStorageService.updateWithVersion(long version,
String context,
String key,
T value,
StorageSerializer<T> serializer,
Long expiration) |
Updates an existing record in the store, if a version matches, using a custom serialization strategy.
|
<T> Long |
StorageService.updateWithVersion(long version,
String context,
String key,
T value,
StorageSerializer<T> serializer,
Long expiration) |
Updates an existing record in the store, if a version matches, using a custom serialization strategy.
|