Uses of Interface
com.tangosol.net.cache.StoreObserver
-
Packages that use StoreObserver Package Description com.tangosol.net.cache Contains classes providing various caching strategies. -
-
Uses of StoreObserver in com.tangosol.net.cache
Classes in com.tangosol.net.cache that implement StoreObserver Modifier and Type Class Description class
ReadWriteBackingMap.NonBlockingEntryStoreWrapper.LoadOperationObserver
Callbacks invoked by NonBlockingEntryStore implementation to handle the result of load operations.class
ReadWriteBackingMap.NonBlockingEntryStoreWrapper.StoreOperationObserver
Callbacks invoked by NonBlockingEntryStore implementer to handle the result of store operations.Methods in com.tangosol.net.cache with parameters of type StoreObserver Modifier and Type Method Description void
NonBlockingEntryStore. load(BinaryEntry<K,V> binEntry, StoreObserver<K,V> observer)
Load the value from the underlying store, update the provided entry and call theonNext
method of the providedStoreObserver
object, oronError
if the store operation failed.void
NonBlockingEntryStore. loadAll(Set<? extends BinaryEntry<K,V>> setBinEntries, StoreObserver<K,V> observer)
Load the values from the underlying store and update the specified entries by calling the onNext method of the providedStoreObserver
object, or onError if the store operation failed.void
NonBlockingEntryStore. store(BinaryEntry<K,V> binEntry, StoreObserver<K,V> observer)
Store the specified entry in the underlying store, in an asynchronous fashion.void
NonBlockingEntryStore. storeAll(Set<? extends BinaryEntry<K,V>> setBinEntries, StoreObserver<K,V> observer)
Asynchronously store the entries in the specified set in the underlying store.
-