public class ClearInvocationContext extends AbstractInvocationContext implements Cloneable
InvocationContext
used by the ClearCommand
.Constructor and Description |
---|
ClearInvocationContext(Address origin) |
Modifier and Type | Method and Description |
---|---|
void |
addLockedKey(Object key)
Tracks the given key as locked by this invocation context.
|
void |
clearLockedKeys() |
ClearInvocationContext |
clone()
Clones the invocation context.
|
Set<Object> |
getLockedKeys()
Returns the set of keys that are locked for writing.
|
Object |
getLockOwner()
Returns the in behalf of which locks will be acquired.
|
Map<Object,CacheEntry> |
getLookedUpEntries()
Retrieves a map of entries looked up within the current scope.
|
boolean |
hasLockedKey(Object key)
Returns true if the lock being tested is already held in the current scope, false otherwise.
|
boolean |
isEntryRemovedInContext(Object key) |
boolean |
isInTxScope()
Returns true if this call is performed in the context of an transaction, false otherwise.
|
CacheEntry |
lookupEntry(Object key)
Retrieves an entry from the collection of looked up entries in the current scope.
|
void |
putLookedUpEntry(Object key,
CacheEntry e)
Puts an entry in the registry of looked up entries in the current scope.
|
void |
removeLookedUpEntry(Object key) |
void |
setLockOwner(Object lockOwner)
Sets the object to be used by lock owner.
|
getOrigin, isOriginLocal
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addLockedKeys
forEachEntry, forEachValue, lookedUpEntriesCount, removeLookedUpEntries
public ClearInvocationContext(Address origin)
public boolean isInTxScope()
InvocationContext
isInTxScope
in interface InvocationContext
public Object getLockOwner()
InvocationContext
getLockOwner
in interface InvocationContext
public void setLockOwner(Object lockOwner)
InvocationContext
setLockOwner
in interface InvocationContext
public ClearInvocationContext clone()
InvocationContext
clone
in interface InvocationContext
clone
in class AbstractInvocationContext
public Set<Object> getLockedKeys()
InvocationContext
getLockedKeys
in interface InvocationContext
public void clearLockedKeys()
clearLockedKeys
in interface InvocationContext
public void addLockedKey(Object key)
InvocationContext
addLockedKey
in interface InvocationContext
public boolean hasLockedKey(Object key)
InvocationContext
hasLockedKey
in interface InvocationContext
hasLockedKey
in class AbstractInvocationContext
key
- lock to testpublic boolean isEntryRemovedInContext(Object key)
isEntryRemovedInContext
in interface InvocationContext
isEntryRemovedInContext
in class AbstractInvocationContext
public CacheEntry lookupEntry(Object key)
EntryLookup
lookupEntry
in interface EntryLookup
key
- key to look uppublic Map<Object,CacheEntry> getLookedUpEntries()
EntryLookup
null
if the key does not exist in the cache.getLookedUpEntries
in interface EntryLookup
public void putLookedUpEntry(Object key, CacheEntry e)
EntryLookup
putLookedUpEntry
in interface EntryLookup
key
- key to storee
- entry to storepublic void removeLookedUpEntry(Object key)
removeLookedUpEntry
in interface EntryLookup
Copyright © 2021 JBoss by Red Hat. All rights reserved.