Package org.infinispan.context
Interface InvocationContextFactory
-
- All Known Implementing Classes:
AbstractInvocationContextFactory,NonTransactionalInvocationContextFactory,TransactionalInvocationContextFactory
public interface InvocationContextFactoryFactory forInvocationContextobjects.- Since:
- 7.0
- Author:
- Manik Surtani (manik AT infinispan DOT org), Mircea.Markus@jboss.com, Dan Berindei
-
-
Field Summary
Fields Modifier and Type Field Description static intUNBOUNDEDTo be used when building InvocationContext withcreateInvocationContext(boolean, int)as an indicator of the fact that the size of the keys to be accessed in the context is not known.
-
Method Summary
-
-
-
Field Detail
-
UNBOUNDED
static final int UNBOUNDED
To be used when building InvocationContext withcreateInvocationContext(boolean, int)as an indicator of the fact that the size of the keys to be accessed in the context is not known.- See Also:
- Constant Field Values
-
-
Method Detail
-
createInvocationContext
InvocationContext createInvocationContext(boolean isWrite, int keyCount)
If we are in a tx scope this will return anTxInvocationContext. Otherwise it will return anNonTxInvocationContext. Either way, both context will be marked as local, i.e.InvocationContext.isOriginLocal()will be true.
-
createInvocationContext
InvocationContext createInvocationContext(Transaction tx, boolean implicitTransaction)
Creates an invocation context
-
createNonTxInvocationContext
NonTxInvocationContext createNonTxInvocationContext()
Will create anNonTxInvocationContextwith theAbstractInvocationContext.isOriginLocal()returning true.
-
createSingleKeyNonTxInvocationContext
InvocationContext createSingleKeyNonTxInvocationContext()
Will create anNonTxInvocationContextwith theAbstractInvocationContext.isOriginLocal()returning true.
-
createClearNonTxInvocationContext
InvocationContext createClearNonTxInvocationContext()
Will create anClearInvocationContextwith theAbstractInvocationContext.isOriginLocal()returning true.
-
createTxInvocationContext
LocalTxInvocationContext createTxInvocationContext(LocalTransaction localTransaction)
Returns aLocalTxInvocationContext.
-
createRemoteTxInvocationContext
RemoteTxInvocationContext createRemoteTxInvocationContext(RemoteTransaction tx, Address origin)
Returns anRemoteTxInvocationContext.- Parameters:
tx- remote transactionorigin- the origin of the command, or null if local
-
createRemoteInvocationContext
InvocationContext createRemoteInvocationContext(Address origin)
Returns anNonTxInvocationContextwhoseAbstractInvocationContext.isOriginLocal()flag will be true.- Parameters:
origin- the origin of the command, or null if local
-
createRemoteInvocationContextForCommand
InvocationContext createRemoteInvocationContextForCommand(VisitableCommand cacheCommand, Address origin)
AscreateRemoteInvocationContext(org.infinispan.remoting.transport.Address), but returning the flags to the context from the Command if any Flag was set.- Parameters:
cacheCommand- the remote commandorigin- the origin of the command, or null if local
-
-