Interface CacheEventConverterFactory
-
- All Known Implementing Classes:
KeyValueWithPreviousEventConverterFactory
public interface CacheEventConverterFactory
Factory that can produce CacheEventConverters- Since:
- 7.0
- Author:
- wburns
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V,C>
CacheEventConverter<K,V,C>getConverter(java.lang.Object[] params)
Retrieves a cache event converter instance from this factory.
-
-
-
Method Detail
-
getConverter
<K,V,C> CacheEventConverter<K,V,C> getConverter(java.lang.Object[] params)
Retrieves a cache event converter instance from this factory.- Parameters:
params
- parameters for the factory to be used to create converter instances- Returns:
- a
CacheEventConverter
instance used to reduce size of event payloads
-
-