Package org.infinispan.filter
Interface Converter<K,V,C>
-
- All Known Subinterfaces:
KeyValueFilterConverter<K,V,C>
- All Known Implementing Classes:
AbstractKeyValueFilterConverter
,CacheEventConverterAsConverter
,CacheEventFilterConverterAsKeyValueFilterConverter
public interface Converter<K,V,C>
Converter that can be used to transform a given entry to a different value. This is especially useful to reduce overall payload of given data that is sent for the given event when a notification is send to a cluster listener as this will have to be serialized and sent across the network when the cluster listener is not local to the node who owns the given key.- Since:
- 7.0
- Author:
- William Burns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description C
convert(K key, V value, Metadata metadata)
-