org.infinispan.affinity.KeyAffinityServiceImpl Maven / Gradle / Ivy
package org.infinispan.affinity;
import java.util.Collection;
import java.util.concurrent.Executor;
import org.infinispan.Cache;
import org.infinispan.remoting.transport.Address;
/**
* @deprecated Extend from
* {@link org.infinispan.affinity.impl.KeyAffinityServiceImpl}
* instead. This class will be removed in the future.
*/
@Deprecated
public class KeyAffinityServiceImpl extends org.infinispan.affinity.impl.KeyAffinityServiceImpl {
public KeyAffinityServiceImpl(Executor executor, Cache extends K, ?> cache, KeyGenerator extends K> keyGenerator,
int bufferSize, Collection filter, boolean start) {
super(executor, cache, keyGenerator, bufferSize, filter, start);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy