Interface UserContextFactory<V,PC,TC>
- Type Parameters:
V- the cache value typePC- the persistent context typeTC- the transient context type
- All Superinterfaces:
CacheEntryCreator<String,V, PC>, CacheEntryLocator<String, V>, CacheEntryRemover<String>
- All Known Implementing Classes:
HotRodUserContextFactory, InfinispanUserContextFactory
public interface UserContextFactory<V,PC,TC>
extends CacheEntryCreator<String,V,PC>, CacheEntryLocator<String,V>, CacheEntryRemover<String>
A factory for creating a user context.
- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptioncreateUserContext(V value) Creates a user context from the specified cache valueMethods inherited from interface CacheEntryCreator
createValue, createValueAsyncMethods inherited from interface CacheEntryLocator
findValue, findValueAsync, tryValue, tryValueAsyncMethods inherited from interface CacheEntryRemover
purge, purgeAsync, remove, removeAsync
-
Method Details
-
createUserContext
-