Package com.tangosol.net.cache
Class SerializationPagedCache.FakeBinaryStore
java.lang.Object
com.tangosol.net.cache.SerializationPagedCache.FakeBinaryStore
- All Implemented Interfaces:
BinaryStore
- Enclosing class:
SerializationPagedCache
A lite BinaryStore implementation used when the real underlying
BinaryStore gets destroyed.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.tangosol.io.BinaryStore
BinaryStore.KeySetAware, BinaryStore.SizeAware
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Remove the specified key from the underlying store if present.void
eraseAll()
Remove all data from the underlying store.protected Map
Obtain the map that stores the binary values held by this BinaryStore.keys()
Iterate all keys in the underlying store.Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.void
Store the specified value under the specific key in the underlying store.toString()
Returns a string representation of the object.
-
Constructor Details
-
FakeBinaryStore
public FakeBinaryStore()
-
-
Method Details
-
load
Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.- Specified by:
load
in interfaceBinaryStore
- Parameters:
binKey
- key whose associated value is to be returned- Returns:
- the value associated with the specified key, or null if no value is available for that key
-
store
Store the specified value under the specific key in the underlying store. This method is intended to support both key/value creation and value update for a specific key.- Specified by:
store
in interfaceBinaryStore
- Parameters:
binKey
- key to store the value underbinValue
- value to be stored
-
erase
Remove the specified key from the underlying store if present.- Specified by:
erase
in interfaceBinaryStore
- Parameters:
binKey
- key whose mapping is to be removed from the map
-
eraseAll
public void eraseAll()Remove all data from the underlying store.- Specified by:
eraseAll
in interfaceBinaryStore
-
keys
Iterate all keys in the underlying store.- Specified by:
keys
in interfaceBinaryStore
- Returns:
- a read-only iterator of the keys in the underlying store
-
toString
Returns a string representation of the object. -
getBinaryMap
Obtain the map that stores the binary values held by this BinaryStore.- Returns:
- a map, keyed by Binary key with a value of Binary.
-