Package org.redisson.reactive
Class RedissonReadWriteLockReactive
- java.lang.Object
 - 
- org.redisson.reactive.RedissonReadWriteLockReactive
 
 
- 
- All Implemented Interfaces:
 RReadWriteLockReactive
public class RedissonReadWriteLockReactive extends Object implements RReadWriteLockReactive
- Author:
 - Nikita Koksharov
 
 
- 
- 
Constructor Summary
Constructors Constructor Description RedissonReadWriteLockReactive(CommandReactiveExecutor commandExecutor, String name) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RLockReactivereadLock()Returns the lock used for reading.RLockReactivewriteLock()Returns the lock used for writing. 
 - 
 
- 
- 
Constructor Detail
- 
RedissonReadWriteLockReactive
public RedissonReadWriteLockReactive(CommandReactiveExecutor commandExecutor, String name)
 
 - 
 
- 
Method Detail
- 
readLock
public RLockReactive readLock()
Description copied from interface:RReadWriteLockReactiveReturns the lock used for reading.- Specified by:
 readLockin interfaceRReadWriteLockReactive- Returns:
 - the lock used for reading
 
 
- 
writeLock
public RLockReactive writeLock()
Description copied from interface:RReadWriteLockReactiveReturns the lock used for writing.- Specified by:
 writeLockin interfaceRReadWriteLockReactive- Returns:
 - the lock used for writing
 
 
 - 
 
 -