Class CoherenceCacheEntryEventFilteringIterable<K,V>

java.lang.Object
com.tangosol.coherence.jcache.common.CoherenceCacheEntryEventFilteringIterable<K,V>
Type Parameters:
K - the type of keys
V - the type of values
All Implemented Interfaces:
Iterable<javax.cache.event.CacheEntryEvent<K,V>>

public class CoherenceCacheEntryEventFilteringIterable<K,V> extends Object implements Iterable<javax.cache.event.CacheEntryEvent<K,V>>
An adapter to provide Iterables over Cache Entries, those of which are filtered using a CacheEntryEventFilter.
Since:
Coherence 12.1.3
Author:
jf 2013.10.24
  • Constructor Details

    • CoherenceCacheEntryEventFilteringIterable

      public CoherenceCacheEntryEventFilteringIterable(Iterable<javax.cache.event.CacheEntryEvent<K,V>> iterable, javax.cache.event.CacheEntryEventFilter<? super K,? super V> filter)
      Parameters:
      iterable - the underlying iterable to filter
      filter - the filter to apply to entries in the iterable
  • Method Details