Class CoherenceCacheEntryEventFilteringIterator<K,V>
java.lang.Object
com.tangosol.coherence.jcache.common.CoherenceCacheEntryEventFilteringIterator<K,V>
- Type Parameters:
K- the type of keysV- the type of value
- All Implemented Interfaces:
Iterator<javax.cache.event.CacheEntryEvent<K,V>>
public class CoherenceCacheEntryEventFilteringIterator<K,V>
extends Object
implements Iterator<javax.cache.event.CacheEntryEvent<K,V>>
An
Iterators to allow filtering of CacheEntryEvents.- Since:
- Coherence 12.1.3
- Author:
- jf 2013.10.24
-
Constructor Summary
ConstructorsConstructorDescriptionCoherenceCacheEntryEventFilteringIterator(Iterator<javax.cache.event.CacheEntryEvent<K, V>> iterator, javax.cache.event.CacheEntryEventFilter<? super K, ? super V> filter) Constructs anCoherenceCacheEntryEventFilteringIterator. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
CoherenceCacheEntryEventFilteringIterator
public CoherenceCacheEntryEventFilteringIterator(Iterator<javax.cache.event.CacheEntryEvent<K, V>> iterator, javax.cache.event.CacheEntryEventFilter<? super K, ? super V> filter) Constructs anCoherenceCacheEntryEventFilteringIterator.- Parameters:
iterator- the underlying m_iterator to m_filterfilter- the m_filter to apply to entries in the m_iterator
-
-
Method Details