Class ClearInvocationContext
java.lang.Object
org.infinispan.context.impl.AbstractInvocationContext
org.infinispan.context.impl.ClearInvocationContext
- All Implemented Interfaces:
Cloneable,EntryLookup,InvocationContext
Implementation of
InvocationContext used by the ClearCommand.- Since:
- 7.2
- Author:
- Pedro Ruivo
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddLockedKey(Object key) Tracks the given key as locked by this invocation context.voidclone()Clones the invocation context.Returns the set of keys that are locked for writing.Returns the in behalf of which locks will be acquired.Retrieves a map of entries looked up within the current scope.booleanhasLockedKey(Object key) Returns true if the lock being tested is already held in the current scope, false otherwise.booleanbooleanReturns true if this call is performed in the context of an transaction, false otherwise.lookupEntry(Object key) Retrieves an entry from the collection of looked up entries in the current scope.voidputLookedUpEntry(Object key, CacheEntry e) Puts an entry in the registry of looked up entries in the current scope.voidvoidsetLockOwner(Object lockOwner) Sets the object to be used by lock owner.Methods inherited from class org.infinispan.context.impl.AbstractInvocationContext
getOrigin, isOriginLocal, publisherMethods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.infinispan.context.EntryLookup
forEachEntry, forEachValue, lookedUpEntriesCount, removeLookedUpEntriesMethods inherited from interface org.infinispan.context.InvocationContext
addLockedKeys
-
Constructor Details
-
ClearInvocationContext
-
-
Method Details
-
isInTxScope
public boolean isInTxScope()Description copied from interface:InvocationContextReturns true if this call is performed in the context of an transaction, false otherwise.- Specified by:
isInTxScopein interfaceInvocationContext
-
getLockOwner
Description copied from interface:InvocationContextReturns the in behalf of which locks will be acquired.- Specified by:
getLockOwnerin interfaceInvocationContext
-
setLockOwner
Description copied from interface:InvocationContextSets the object to be used by lock owner.- Specified by:
setLockOwnerin interfaceInvocationContext
-
clone
Description copied from interface:InvocationContextClones the invocation context.- Specified by:
clonein interfaceInvocationContext- Overrides:
clonein classAbstractInvocationContext- Returns:
- A cloned instance of this invocation context instance
-
getLockedKeys
Description copied from interface:InvocationContextReturns the set of keys that are locked for writing.- Specified by:
getLockedKeysin interfaceInvocationContext
-
clearLockedKeys
public void clearLockedKeys()- Specified by:
clearLockedKeysin interfaceInvocationContext
-
addLockedKey
Description copied from interface:InvocationContextTracks the given key as locked by this invocation context.- Specified by:
addLockedKeyin interfaceInvocationContext
-
hasLockedKey
Description copied from interface:InvocationContextReturns true if the lock being tested is already held in the current scope, false otherwise.- Specified by:
hasLockedKeyin interfaceInvocationContext- Overrides:
hasLockedKeyin classAbstractInvocationContext- Parameters:
key- lock to test
-
isEntryRemovedInContext
- Specified by:
isEntryRemovedInContextin interfaceInvocationContext- Overrides:
isEntryRemovedInContextin classAbstractInvocationContext
-
lookupEntry
Description copied from interface:EntryLookupRetrieves an entry from the collection of looked up entries in the current scope.- Specified by:
lookupEntryin interfaceEntryLookup- Parameters:
key- key to look up- Returns:
- an entry, or null if it cannot be found.
-
getLookedUpEntries
Description copied from interface:EntryLookupRetrieves a map of entries looked up within the current scope. Note: The key inside the CacheEntry may benullif the key does not exist in the cache.- Specified by:
getLookedUpEntriesin interfaceEntryLookup- Returns:
- a map of looked up entries.
-
putLookedUpEntry
Description copied from interface:EntryLookupPuts an entry in the registry of looked up entries in the current scope.- Specified by:
putLookedUpEntryin interfaceEntryLookup- Parameters:
key- key to storee- entry to store
-
removeLookedUpEntry
- Specified by:
removeLookedUpEntryin interfaceEntryLookup
-