All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.notifications.cachelistener.filter.CacheEventConverterFactory Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.notifications.cachelistener.filter;

/**
 * Factory that can produce CacheEventConverters
 *
 * @author wburns
 * @since 7.0
 */
public interface CacheEventConverterFactory {
   /**
    * Retrieves a cache event converter instance from this factory.
    *
    * @param params parameters for the factory to be used to create converter instances
    * @return a {@link org.infinispan.notifications.cachelistener.filter.CacheEventConverter} instance used
    * to reduce size of event payloads
    */
    CacheEventConverter getConverter(Object[] params);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy