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

org.infinispan.server.hotrod.event.KeyValueWithPreviousEventConverterFactory Maven / Gradle / Ivy

package org.infinispan.server.hotrod.event;

import org.infinispan.commons.util.KeyValueWithPrevious;
import org.infinispan.filter.NamedFactory;
import org.infinispan.notifications.cachelistener.filter.CacheEventConverter;
import org.infinispan.notifications.cachelistener.filter.CacheEventConverterFactory;

@NamedFactory(name = "key-value-with-previous-converter-factory")
public class KeyValueWithPreviousEventConverterFactory implements CacheEventConverterFactory {
   private final KeyValueWithPreviousEventConverter converter = new KeyValueWithPreviousEventConverter();

   @Override
   public CacheEventConverter> getConverter(Object[] params) {
      return converter;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy