Uses of Interface
com.tangosol.net.cache.StoreObserver
Packages that use StoreObserver
-
Uses of StoreObserver in com.tangosol.net.cache
Classes in com.tangosol.net.cache that implement StoreObserverModifier and TypeClassDescriptionclass
Callbacks invoked by NonBlockingEntryStore implementation to handle the result of load operations.class
Callbacks invoked by NonBlockingEntryStore implementer to handle the result of store operations.Methods in com.tangosol.net.cache with parameters of type StoreObserverModifier and TypeMethodDescriptionvoid
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.