Uses of Interface
org.infinispan.filter.Converter
-
Packages that use Converter Package Description org.infinispan.filter Provides capabilities around filtering and converting entries that are found in the cache or cache store/loader.org.infinispan.notifications.cachelistener.filter Cache
-specific notifications and eventing filtering classes. -
-
Uses of Converter in org.infinispan.filter
Subinterfaces of Converter in org.infinispan.filter Modifier and Type Interface Description interface
KeyValueFilterConverter<K,V,C>
This interface is an optimization that can be used when a filter and converter are most efficiently used as the same object composing the filtering and conversion in the same method invocation.Classes in org.infinispan.filter that implement Converter Modifier and Type Class Description class
AbstractKeyValueFilterConverter<K,V,C>
This is a base class that should be used when implementing a KeyValueFilterConverter that provides default implementations for theKeyValueFilter.accept(Object, Object, org.infinispan.metadata.Metadata)
andconvert(Object, Object, org.infinispan.metadata.Metadata)
methods so they just call theKeyValueFilterConverter.filterAndConvert(Object, Object, org.infinispan.metadata.Metadata)
method and then do the right thing.Methods in org.infinispan.filter with parameters of type Converter Modifier and Type Method Description static <K,V,C>
Function<org.infinispan.container.entries.CacheEntry<K,V>,org.infinispan.container.entries.CacheEntry<K,C>>CacheFilters. function(Converter<? super K,? super V,C> converter)
Creates a newFunction
using the provided converter as a basis for the operation. -
Uses of Converter in org.infinispan.notifications.cachelistener.filter
Classes in org.infinispan.notifications.cachelistener.filter that implement Converter Modifier and Type Class Description class
CacheEventConverterAsConverter<K,V,C>
Converter that is implemented by using the provided CacheEventConverter.class
CacheEventFilterConverterAsKeyValueFilterConverter<K,V,C>
-