javadocs fixed

pull/1792/head
Nikita Koksharov 6 years ago
parent 711586151e
commit 0b63e7412d

@ -108,7 +108,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns <code>RCountDownLatch</code> instance associated with key * Returns <code>RCountDownLatch</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return countdownlatch
*/ */
RCountDownLatch getCountDownLatch(K key); RCountDownLatch getCountDownLatch(K key);
@ -116,7 +116,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns <code>RPermitExpirableSemaphore</code> instance associated with key * Returns <code>RPermitExpirableSemaphore</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return permitExpirableSemaphore
*/ */
RPermitExpirableSemaphore getPermitExpirableSemaphore(K key); RPermitExpirableSemaphore getPermitExpirableSemaphore(K key);
@ -124,7 +124,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns <code>RSemaphore</code> instance associated with key * Returns <code>RSemaphore</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return semaphore
*/ */
RSemaphore getSemaphore(K key); RSemaphore getSemaphore(K key);
@ -132,7 +132,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* Returns <code>RReadWriteLock</code> instance associated with key * Returns <code>RReadWriteLock</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return fairlock
*/ */
RLock getFairLock(K key); RLock getFairLock(K key);

@ -441,7 +441,7 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* Returns <code>RPermitExpirableSemaphore</code> instance associated with key * Returns <code>RPermitExpirableSemaphore</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return permitExpirableSemaphore
*/ */
RPermitExpirableSemaphoreReactive getPermitExpirableSemaphore(K key); RPermitExpirableSemaphoreReactive getPermitExpirableSemaphore(K key);
@ -449,7 +449,7 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* Returns <code>RSemaphore</code> instance associated with key * Returns <code>RSemaphore</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return semaphore
*/ */
RSemaphoreReactive getSemaphore(K key); RSemaphoreReactive getSemaphore(K key);
@ -457,7 +457,7 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* Returns <code>RReadWriteLock</code> instance associated with key * Returns <code>RReadWriteLock</code> instance associated with key
* *
* @param key - map key * @param key - map key
* @return readWriteLock * @return fairLock
*/ */
RLockReactive getFairLock(K key); RLockReactive getFairLock(K key);

@ -438,4 +438,44 @@ public interface RMapRx<K, V> extends RExpirableRx {
*/ */
Flowable<K> keyIterator(String pattern, int count); Flowable<K> keyIterator(String pattern, int count);
/**
* Returns <code>RPermitExpirableSemaphore</code> instance associated with key
*
* @param key - map key
* @return permitExpirableSemaphore
*/
RPermitExpirableSemaphoreRx getPermitExpirableSemaphore(K key);
/**
* Returns <code>RSemaphore</code> instance associated with key
*
* @param key - map key
* @return semaphore
*/
RSemaphoreRx getSemaphore(K key);
/**
* Returns <code>RReadWriteLock</code> instance associated with key
*
* @param key - map key
* @return fairLock
*/
RLockRx getFairLock(K key);
/**
* Returns <code>RReadWriteLock</code> instance associated with key
*
* @param key - map key
* @return readWriteLock
*/
RReadWriteLockRx getReadWriteLock(K key);
/**
* Returns <code>RLock</code> instance associated with key
*
* @param key - map key
* @return lock
*/
RLockRx getLock(K key);
} }

Loading…
Cancel
Save