Uses of Package
org.infinispan.filter
-
Packages that use org.infinispan.filter 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. -
Classes in org.infinispan.filter used by org.infinispan.filter Class Description AcceptAllKeyValueFilter A key value filter that accepts all entries found.CompositeKeyValueFilter Allows AND-composing several key/value filters.Converter Converter that can be used to transform a given entry to a different value.KeyValueFilter A filter for keys with their values.KeyValueFilterConverter 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.KeyValueFilterConverterFactory Factory forKeyValueFilterConverter
instances -
Classes in org.infinispan.filter used by org.infinispan.notifications.cachelistener.filter Class Description AbstractKeyValueFilterConverter 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)
andConverter.convert(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.Converter Converter that can be used to transform a given entry to a different value.KeyValueFilter A filter for keys with their values.KeyValueFilterConverter 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.