public static final class AbstractReadWriteAccess.Item extends Object implements Serializable, AbstractReadWriteAccess.Lockable
Wrapper type representing unlocked items.
| Modifier and Type | Method and Description |
|---|---|
Object |
getValue()
Returns the enclosed value.
|
boolean |
isReadable(long txTimestamp)
Returns <code>true</code> if the enclosed value can be read by a transaction started at the given time.
|
boolean |
isUnlockable(SoftLock lock)
Returns <code>true</code> if the given lock can be unlocked using the given SoftLock instance as a handle.
|
boolean |
isWriteable(long txTimestamp,
Object newVersion,
Comparator versionComparator)
Returns <code>true</code> if the enclosed value can be replaced with one of the given version by a
transaction started at the given time.
|
AbstractReadWriteAccess.SoftLockImpl |
lock(long timeout,
UUID uuid,
long lockId)
Locks this entry, stamping it with the UUID and lockId given, with the lock timeout occuring at the specified
time.
|
String |
toString() |
public boolean isReadable(long txTimestamp)
AbstractReadWriteAccess.LockableReturns <code>true</code> if the enclosed value can be read by a transaction started at the given time.
isReadable in interface AbstractReadWriteAccess.Lockablepublic boolean isWriteable(long txTimestamp,
Object newVersion,
Comparator versionComparator)
AbstractReadWriteAccess.LockableReturns <code>true</code> if the enclosed value can be replaced with one of the given version by a transaction started at the given time.
isWriteable in interface AbstractReadWriteAccess.Lockablepublic Object getValue()
AbstractReadWriteAccess.LockableReturns the enclosed value.
getValue in interface AbstractReadWriteAccess.Lockablepublic boolean isUnlockable(SoftLock lock)
AbstractReadWriteAccess.LockableReturns <code>true</code> if the given lock can be unlocked using the given SoftLock instance as a handle.
isUnlockable in interface AbstractReadWriteAccess.Lockablepublic AbstractReadWriteAccess.SoftLockImpl lock(long timeout, UUID uuid, long lockId)
AbstractReadWriteAccess.LockableLocks this entry, stamping it with the UUID and lockId given, with the lock timeout occuring at the specified time. The returned Lock object can be used to unlock the entry in the future.
lock in interface AbstractReadWriteAccess.LockableCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.