Uses of Class
org.ehcache.spi.resilience.StoreAccessException
Packages that use StoreAccessException
-
Uses of StoreAccessException in org.ehcache.spi.resilience
Methods in org.ehcache.spi.resilience with parameters of type StoreAccessExceptionModifier and TypeMethodDescriptionvoidResilienceStrategy.clearFailure(StoreAccessException e) Called when aCache.clear()fails due to an underlying store failure.booleanResilienceStrategy.containsKeyFailure(K key, StoreAccessException e) Called when aCache.containsKey(java.lang.Object)fails due to an underlying store failure, and the resultant cache load operation also fails.ResilienceStrategy.getAllFailure(Iterable<? extends K> keys, StoreAccessException e) Called when aCache.getAll(java.util.Set)fails on a cache without a cache loader due to an underlying store failure.ResilienceStrategy.getFailure(K key, StoreAccessException e) Called when aCache.get(java.lang.Object)fails on a cache without a cache loader due to an underlying store failure.ResilienceStrategy.iteratorFailure(StoreAccessException e) Called when a cache iterator advancement fails due to an underlying store failure.voidResilienceStrategy.putAllFailure(Map<? extends K, ? extends V> entries, StoreAccessException e) Called when aCache.putAll(java.util.Map)fails due to an underlying store failure.voidResilienceStrategy.putFailure(K key, V value, StoreAccessException e) Called when aCache.put(java.lang.Object, java.lang.Object)fails due to an underlying store failure.ResilienceStrategy.putIfAbsentFailure(K key, V value, StoreAccessException e) Called when aCache.putIfAbsent(java.lang.Object, java.lang.Object)fails due to an underlying store failure.voidResilienceStrategy.removeAllFailure(Iterable<? extends K> keys, StoreAccessException e) Called when aCache.removeAll(java.util.Set)fails due to an underlying store failure.voidResilienceStrategy.removeFailure(K key, StoreAccessException e) Called when aCache.remove(java.lang.Object)fails due to an underlying store failure.booleanResilienceStrategy.removeFailure(K key, V value, StoreAccessException e) Called when aCache.remove(Object, Object)fails due to an underlying store failure.ResilienceStrategy.replaceFailure(K key, V value, StoreAccessException e) Called when aCache.replace(java.lang.Object, java.lang.Object)fails due to an underlying store failure.booleanResilienceStrategy.replaceFailure(K key, V value, V newValue, StoreAccessException e) Called when aCache.replace(java.lang.Object, java.lang.Object, java.lang.Object)fails due to an underlying store failure.Methods in org.ehcache.spi.resilience that throw StoreAccessExceptionModifier and TypeMethodDescriptionvoidRecoveryStore.obliterate()Obliterate all keys in a store.default voidRecoveryStore.obliterate(Iterable<? extends K> keys) Obliterate a list of keys.voidRecoveryStore.obliterate(K key) Obliterate a given key.