Package org.redisson.api
Interface RReadWriteLockReactive
- All Known Implementing Classes:
RedissonReadWriteLockReactive
public interface RReadWriteLockReactive
A
ReadWriteLock
maintains a pair of associated locks
, one for read-only operations and one for writing.
The read lock
may be held simultaneously by
multiple reader threads, so long as there are no writers. The
write lock
is exclusive.
Works in non-fair mode. Therefore order of read and write
locking is unspecified.- Author:
- Nikita Koksharov
-
Method Summary
Modifier and TypeMethodDescriptionreadLock()
Returns the lock used for reading.Returns the lock used for writing.
-
Method Details
-
readLock
RLockReactive readLock()Returns the lock used for reading.- Returns:
- the lock used for reading
-
writeLock
RLockReactive writeLock()Returns the lock used for writing.- Returns:
- the lock used for writing
-