Package org.redisson.api
Interface RReadWriteLockRx
-
- All Known Implementing Classes:
RedissonReadWriteLockRx
public interface RReadWriteLockRxAReadWriteLockmaintains a pair of associatedlocks, one for read-only operations and one for writing. Theread lockmay be held simultaneously by multiple reader threads, so long as there are no writers. Thewrite lockis exclusive. Works in non-fair mode. Therefore order of read and write locking is unspecified.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RLockRxreadLock()Returns the lock used for reading.RLockRxwriteLock()Returns the lock used for writing.
-