Class EmbeddedCacheEntryMutatorFactory<K,V>
java.lang.Object
org.wildfly.clustering.cache.infinispan.embedded.EmbeddedCacheEntryMutatorFactory<K,V>
- Type Parameters:
K- the cache key typeV- the cache value type
- All Implemented Interfaces:
CacheEntryMutatorFactory<K,V>
public class EmbeddedCacheEntryMutatorFactory<K,V>
extends Object
implements CacheEntryMutatorFactory<K,V>
Factory for creating
CacheEntryMutator objects for an Infinispan cache.- Author:
- Paul Ferraro
-
Constructor Summary
ConstructorsConstructorDescriptionEmbeddedCacheEntryMutatorFactory(org.infinispan.Cache<K, V> cache) EmbeddedCacheEntryMutatorFactory(org.infinispan.Cache<K, V> cache, CacheProperties properties) -
Method Summary
Modifier and TypeMethodDescriptioncreateMutator(K key, V value) Creates a mutator for the specified cache entry.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.wildfly.clustering.cache.CacheEntryMutatorFactory
createMutator
-
Constructor Details
-
EmbeddedCacheEntryMutatorFactory
-
EmbeddedCacheEntryMutatorFactory
public EmbeddedCacheEntryMutatorFactory(org.infinispan.Cache<K, V> cache, CacheProperties properties)
-
-
Method Details
-
createMutator
Description copied from interface:CacheEntryMutatorFactoryCreates a mutator for the specified cache entry.- Specified by:
createMutatorin interfaceCacheEntryMutatorFactory<K,V> - Parameters:
key- a cache keyvalue- a cache value- Returns:
- a mutator
-