Interface RemoteLockCommand
- All Superinterfaces:
ReplicableCommand
- All Known Subinterfaces:
TransactionalRemoteLockCommand
Simple interface to extract all the keys that may need to be locked.
A CacheRpcCommand
that needs to acquire locks should implement this interface.
This way, Infinispan tries to provide a better management to optimize the system resources usage.
- Since:
- 8.0
- Author:
- Pedro Ruivo
-
Method Summary
Modifier and TypeMethodDescriptionIt returns the lock owner of the key.Collection<?>
It returns aCollection
with the keys to be lock.boolean
It checks if this command should acquire locks.boolean
Methods inherited from interface org.infinispan.commands.ReplicableCommand
canBlock, getCommandId, invoke, invokeAsync, isReturnValueExpected, isSuccessful, logThrowable, readFrom, setOrigin, writeTo
-
Method Details
-
getKeysToLock
Collection<?> getKeysToLock()It returns aCollection
with the keys to be lock.It may return an empty collection if no keys needs to be locked independently of the return value of
hasSkipLocking()
. It may contains duplicated keys andnull
is not a valid return value.- Returns:
- a
Collection
of keys to lock.
-
getKeyLockOwner
Object getKeyLockOwner()It returns the lock owner of the key.Usually, in transaction caches it is the
GlobalTransaction
and in non-transactional caches theCommandInvocationId
.- Returns:
- the lock owner of the key.
-
hasZeroLockAcquisition
boolean hasZeroLockAcquisition()- Returns:
- it the locks should be acquire with 0 (zero) acquisition timeout.
-
hasSkipLocking
boolean hasSkipLocking()It checks if this command should acquire locks.- Returns:
true
if locks should be acquired for the keys ingetKeysToLock()
.
-