Uses of Class
com.tangosol.net.cache.CacheEvent
-
Packages that use CacheEvent Package Description com.tangosol.coherence.jcache.common Common utilities used by Coherence JCache.com.tangosol.coherence.jcache.localcache Contains classes related to local cache implementation of Coherence JCache.com.tangosol.coherence.jcache.partitionedcache Contains classes related to partitioned cache implementation of Coherence JCache.com.tangosol.net.cache Contains classes providing various caching strategies.com.tangosol.util Contains various generic utilities. -
-
Uses of CacheEvent in com.tangosol.coherence.jcache.common
Methods in com.tangosol.coherence.jcache.common with parameters of type CacheEvent Modifier and Type Method Description abstract boolean
NonSyntheticEntryFilter. isJCacheSynthetic(CacheEvent evt)
-
Uses of CacheEvent in com.tangosol.coherence.jcache.localcache
Methods in com.tangosol.coherence.jcache.localcache with parameters of type CacheEvent Modifier and Type Method Description boolean
LocalCacheAsynchronousMapListener.NonSyntheticEntryFilter. isJCacheSynthetic(CacheEvent evt)
-
Uses of CacheEvent in com.tangosol.coherence.jcache.partitionedcache
Methods in com.tangosol.coherence.jcache.partitionedcache with parameters of type CacheEvent Modifier and Type Method Description boolean
PartitionedCacheAsynchronousMapListener.NonSyntheticEntryFilter. isJCacheSynthetic(CacheEvent evt)
-
Uses of CacheEvent in com.tangosol.net.cache
Subclasses of CacheEvent in com.tangosol.net.cache Modifier and Type Class Description protected static class
OverflowMap.HistoricCacheEvent
A CacheEvent that carries a recent value (to avoid it being lost during eviction).Methods in com.tangosol.net.cache that return CacheEvent Modifier and Type Method Description CacheEvent<K,V>
CacheEvent. with(int nPartition, long lVersion)
Methods in com.tangosol.net.cache with parameters of type CacheEvent Modifier and Type Method Description protected void
AbstractSerializationCache. dispatchEvent(CacheEvent evt)
Dispatch the passed event. -
Uses of CacheEvent in com.tangosol.util
Subclasses of CacheEvent in com.tangosol.util Modifier and Type Class Description protected static class
AbstractKeyBasedMap.DeferredCacheEvent<K,V>
A DeferredCacheEvent is aCacheEvent
object that defers the loading of theold value
.static class
ConverterCollections.ConverterCacheEvent<K,V>
A Converter CacheEvent views an underlying CacheEvent through a set of key and value Converters.static class
ConverterCollections.ConverterMapEvent<K,V>
A ConverterMapEvent views an underlying MapEvent through a set of key and value Converters.static class
MapListenerSupport.FilterEvent
An extension of the CacheEvent which may carry no values (old or new), but instead holds on an array of Filter objects being the "cause" of the event.Methods in com.tangosol.util that return CacheEvent Modifier and Type Method Description CacheEvent<K,V>
ConverterCollections.ConverterCacheEvent. getCacheEvent()
Return the underlying CacheEvent.Constructors in com.tangosol.util with parameters of type CacheEvent Constructor Description ConverterCacheEvent(ObservableMap<K,V> map, CacheEvent<K,V> event, Converter<K,K> convKey, Converter<V,V> convVal)
Constructor.ConverterCacheEvent(ObservableMap<K,V> map, CacheEvent<K,V> event, Converter<K,K> convKey, Converter<V,V> convVal, BackingMapManagerContext context)
Construct a ConverterMapEvent.
-