Uses of Class
org.ehcache.spi.resilience.StoreAccessException
-
Packages that use StoreAccessException Package Description org.ehcache.spi.resilience ResilienceStrategyAPI of aCache. -
-
Uses of StoreAccessException in org.ehcache.spi.resilience
Methods in org.ehcache.spi.resilience with parameters of type StoreAccessException Modifier and Type Method Description voidResilienceStrategy. 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.java.util.Map<K,V>ResilienceStrategy. getAllFailure(java.lang.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.VResilienceStrategy. 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.Cache.Entry<K,V>ResilienceStrategy. iteratorFailure(StoreAccessException e)Called when a cache iterator advancement fails due to an underlying store failure.voidResilienceStrategy. putAllFailure(java.util.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.VResilienceStrategy. 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(java.lang.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.VResilienceStrategy. 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 StoreAccessException Modifier and Type Method Description voidRecoveryStore. obliterate()Obliterate all keys in a store.default voidRecoveryStore. obliterate(java.lang.Iterable<? extends K> keys)Obliterate a list of keys.voidRecoveryStore. obliterate(K key)Obliterate a given key.
-