Package | Description |
---|---|
org.infinispan.context |
Contexts contain information of a specific invocation on the cache, such as its origins, scope
(transactional or non-transactional), as well as invocation-specific flags.
|
org.infinispan.interceptors.base |
Base interceptors containing common, reusable behavior.
|
org.infinispan.persistence |
This package contains stores, which are used for overflow or persistence.
|
Modifier and Type | Method and Description |
---|---|
InvocationContext |
InvocationContext.clone()
Deprecated.
Clones the invocation context.
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
PrePostProcessingCommandInterceptor.doAfterCall(InvocationContext ctx,
VisitableCommand command)
Deprecated.
Callback that is invoked after every handleXXX() method defined above.
|
protected boolean |
PrePostProcessingCommandInterceptor.doBeforeCall(InvocationContext ctx,
VisitableCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleClearCommand(InvocationContext ctx,
ClearCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleCommitCommand(InvocationContext ctx,
CommitCommand command)
Deprecated.
|
protected Object |
JmxStatsCommandInterceptor.handleDefault(InvocationContext ctx,
VisitableCommand command)
Deprecated.
|
protected Object |
CommandInterceptor.handleDefault(InvocationContext ctx,
VisitableCommand command)
Deprecated.
The default behaviour of the visitXXX methods, which is to ignore the call and pass the call up to the next
interceptor in the chain.
|
protected Object |
BaseStateTransferInterceptor.handleDefault(InvocationContext ctx,
VisitableCommand command)
Deprecated.
|
protected Object |
BaseRpcInterceptor.handleDefault(InvocationContext ctx,
VisitableCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleEvictCommand(InvocationContext ctx,
EvictCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleGetKeyValueCommand(InvocationContext ctx,
GetKeyValueCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handlePrepareCommand(InvocationContext ctx,
PrepareCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handlePutKeyValueCommand(InvocationContext ctx,
PutKeyValueCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handlePutMapCommand(InvocationContext ctx,
PutMapCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleRemoveCommand(InvocationContext ctx,
RemoveCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleReplaceCommand(InvocationContext ctx,
ReplaceCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleRollbackCommand(InvocationContext ctx,
RollbackCommand command)
Deprecated.
|
protected Object |
PrePostProcessingCommandInterceptor.handleSizeCommand(InvocationContext ctx,
SizeCommand command)
Deprecated.
|
Object |
CommandInterceptor.invokeNextInterceptor(InvocationContext ctx,
VisitableCommand command)
Deprecated.
Invokes the next interceptor in the chain.
|
Object |
PrePostProcessingCommandInterceptor.visitClearCommand(InvocationContext ctx,
ClearCommand command)
Deprecated.
|
Object |
CommandInterceptor.visitCommand(InvocationContext ctx,
VisitableCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitEvictCommand(InvocationContext ctx,
EvictCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitGetKeyValueCommand(InvocationContext ctx,
GetKeyValueCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitPutKeyValueCommand(InvocationContext ctx,
PutKeyValueCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitPutMapCommand(InvocationContext ctx,
PutMapCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitRemoveCommand(InvocationContext ctx,
RemoveCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitReplaceCommand(InvocationContext ctx,
ReplaceCommand command)
Deprecated.
|
Object |
PrePostProcessingCommandInterceptor.visitSizeCommand(InvocationContext ctx,
SizeCommand command)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static MarshalledEntry |
PersistenceUtil.loadAndCheckExpiration(PersistenceManager persistenceManager,
Object key,
InvocationContext context,
TimeService timeService) |
static <K,V> InternalCacheEntry<K,V> |
PersistenceUtil.loadAndComputeInDataContainer(DataContainer<K,V> dataContainer,
PersistenceManager persistenceManager,
K key,
InvocationContext ctx,
TimeService timeService,
DataContainer.ComputeAction<K,V> action) |
static <K,V> InternalCacheEntry<K,V> |
PersistenceUtil.loadAndStoreInDataContainer(DataContainer<K,V> dataContainer,
PersistenceManager persistenceManager,
K key,
InvocationContext ctx,
TimeService timeService,
AtomicReference<Boolean> isLoaded) |
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.