Interface BinaryEntryStore<K,V>
-
- All Known Implementing Classes:
PartitionedCacheBinaryEntryStore
public interface BinaryEntryStore<K,V>
BinaryEntryStore is analogous to theCacheStore
, but operates onBinaryEntry
objects. Note that the BinaryEntry interface extends Map.Entry and provides dual access to the underlying data: in external (Object) format via the getKey/getValue/setValue methods or internal (Binary) format via getBinaryKey/getBinaryValue/updateBinaryValue methods. Additionally, for the purpose of the optimistic concurrency control, implementations could rely on the entry's "previous" values: in the external format usingBinaryEntry.getOriginalValue()
and in the internal format using theBinaryEntry.getOriginalBinaryValue()
methods (for store operations, a value of null here would indicate an insert operation).- Since:
- Coherence 3.6
- Author:
- gg 2009.09.25
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
erase(BinaryEntry<K,V> binEntry)
Remove the specified entry from the underlying store.void
eraseAll(Set<? extends BinaryEntry<K,V>> setBinEntries)
Remove the specified entries from the underlying store.void
load(BinaryEntry<K,V> binEntry)
Load the value from the underlying store and update the specified entry.void
loadAll(Set<? extends BinaryEntry<K,V>> setBinEntries)
Load the values from the underlying store and update the specified entries.void
store(BinaryEntry<K,V> binEntry)
Store the specified entry in the underlying store.void
storeAll(Set<? extends BinaryEntry<K,V>> setBinEntries)
Store the entries in the specified set in the underlying store.
-
-
-
Method Detail
-
load
void load(BinaryEntry<K,V> binEntry)
Load the value from the underlying store and update the specified entry. If the BinaryEntryStore is capable of loading Binary values, it should update the entry using the {#link BinaryEntry.updateBinaryValue} API.- Parameters:
binEntry
- an entry that needs to be updated with the loaded value
-
loadAll
void loadAll(Set<? extends BinaryEntry<K,V>> setBinEntries)
Load the values from the underlying store and update the specified entries. If the BinaryEntryStore is capable of loading Binary values, it should update the entry using the {#link BinaryEntry.updateBinaryValue} API.- Parameters:
setBinEntries
- a set of entries that needs to be updated with the loaded values
-
store
void store(BinaryEntry<K,V> binEntry)
Store the specified entry in the underlying store. This method is intended to support both the entry creation and value update.If the store operation changes the entry's value, a best effort will be made to place the changed value back into the corresponding backing map (for asynchronous store operations a concurrent backing map modification can make it impossible).
- Parameters:
binEntry
- the entry to be stored- Throws:
UnsupportedOperationException
- if this implementation or the underlying store is read-only
-
storeAll
void storeAll(Set<? extends BinaryEntry<K,V>> setBinEntries)
Store the entries in the specified set in the underlying store. This method is intended to support both the entry creation and value update.If this operation fails (by throwing an exception) after a partial success, the convention is that entries which have been stored successfully are to be removed from the specified set, indicating that the store operation for the entries left in the map has failed or has not been attempted.
If the storeAll operation changes some entries' values, a best effort will be made to place the changed values back into the corresponding backing map (for asynchronous store operations concurrent backing map modifications can make it impossible).
- Parameters:
setBinEntries
- the set of entries to be stored- Throws:
UnsupportedOperationException
- if this implementation or the underlying store is read-only
-
erase
void erase(BinaryEntry<K,V> binEntry)
Remove the specified entry from the underlying store.- Parameters:
binEntry
- the entry to be removed from the store- Throws:
UnsupportedOperationException
- if this implementation or the underlying store is read-only
-
eraseAll
void eraseAll(Set<? extends BinaryEntry<K,V>> setBinEntries)
Remove the specified entries from the underlying store.If this operation fails (by throwing an exception) after a partial success, the convention is that entries which have been erased successfully are to be removed from the specified set, indicating that the erase operation for the entries left in the collection has failed or has not been attempted.
- Parameters:
setBinEntries
- the set entries to be removed from the store- Throws:
UnsupportedOperationException
- if this implementation or the underlying store is read-only
-
-