Uses of Interface
org.infinispan.util.concurrent.locks.KeyAwareLockPromise
-
Packages that use KeyAwareLockPromise Package Description org.infinispan.interceptors.locking Interceptors dealing with locking.org.infinispan.stats.wrappers org.infinispan.util.concurrent.locks Lock and synchronization related classes, tools and utilities. -
-
Uses of KeyAwareLockPromise in org.infinispan.interceptors.locking
Methods in org.infinispan.interceptors.locking that return KeyAwareLockPromise Modifier and Type Method Description protected KeyAwareLockPromise
AbstractLockingInterceptor. lockAndRecord(InvocationContext context, Object key, long timeout)
-
Uses of KeyAwareLockPromise in org.infinispan.stats.wrappers
Methods in org.infinispan.stats.wrappers that return KeyAwareLockPromise Modifier and Type Method Description KeyAwareLockPromise
ExtendedStatisticLockManager. lock(Object key, Object lockOwner, long time, TimeUnit unit)
KeyAwareLockPromise
TopKeyLockManager. lock(Object key, Object lockOwner, long time, TimeUnit unit)
KeyAwareLockPromise
ExtendedStatisticLockManager. lockAll(Collection<?> keys, Object lockOwner, long time, TimeUnit unit)
KeyAwareLockPromise
TopKeyLockManager. lockAll(Collection<?> keys, Object lockOwner, long time, TimeUnit unit)
-
Uses of KeyAwareLockPromise in org.infinispan.util.concurrent.locks
Fields in org.infinispan.util.concurrent.locks declared as KeyAwareLockPromise Modifier and Type Field Description static KeyAwareLockPromise
KeyAwareLockPromise. NO_OP
Methods in org.infinispan.util.concurrent.locks that return KeyAwareLockPromise Modifier and Type Method Description KeyAwareLockPromise
LockManager. lock(Object key, Object lockOwner, long time, TimeUnit unit)
Attempts to lock thekey
if the lock isn't already held by thelockOwner
.KeyAwareLockPromise
LockManager. lockAll(Collection<?> keys, Object lockOwner, long time, TimeUnit unit)
Same asLockManager.lock(Object, Object, long, TimeUnit)
but for multiple keys.
-