refactoring

pull/6244/head
Nikita Koksharov 4 months ago
parent 9732dbf31b
commit 0de2169f4d

@ -781,7 +781,7 @@ public interface RJsonStoreReactive<K, V> extends RExpirableReactive {
* @param key - map key
* @return countdownlatch
*/
RCountDownLatch getCountDownLatch(K key);
RCountDownLatchReactive getCountDownLatch(K key);
/**
* Returns <code>RPermitExpirableSemaphore</code> instance associated with key
@ -789,7 +789,7 @@ public interface RJsonStoreReactive<K, V> extends RExpirableReactive {
* @param key - map key
* @return permitExpirableSemaphore
*/
RPermitExpirableSemaphore getPermitExpirableSemaphore(K key);
RPermitExpirableSemaphoreReactive getPermitExpirableSemaphore(K key);
/**
* Returns <code>RSemaphore</code> instance associated with key
@ -797,7 +797,7 @@ public interface RJsonStoreReactive<K, V> extends RExpirableReactive {
* @param key - map key
* @return semaphore
*/
RSemaphore getSemaphore(K key);
RSemaphoreReactive getSemaphore(K key);
/**
* Returns <code>RLock</code> instance associated with key
@ -805,7 +805,7 @@ public interface RJsonStoreReactive<K, V> extends RExpirableReactive {
* @param key - map key
* @return fairlock
*/
RLock getFairLock(K key);
RLockReactive getFairLock(K key);
/**
* Returns <code>RReadWriteLock</code> instance associated with key
@ -813,7 +813,7 @@ public interface RJsonStoreReactive<K, V> extends RExpirableReactive {
* @param key - map key
* @return readWriteLock
*/
RReadWriteLock getReadWriteLock(K key);
RReadWriteLockReactive getReadWriteLock(K key);
/**
* Returns <code>RLock</code> instance associated with key
@ -821,6 +821,6 @@ public interface RJsonStoreReactive<K, V> extends RExpirableReactive {
* @param key - map key
* @return lock
*/
RLock getLock(K key);
RLockReactive getLock(K key);
}

@ -784,7 +784,7 @@ public interface RJsonStoreRx<K, V> extends RExpirableRx {
* @param key - map key
* @return countdownlatch
*/
RCountDownLatch getCountDownLatch(K key);
RCountDownLatchRx getCountDownLatch(K key);
/**
* Returns <code>RPermitExpirableSemaphore</code> instance associated with key
@ -792,7 +792,7 @@ public interface RJsonStoreRx<K, V> extends RExpirableRx {
* @param key - map key
* @return permitExpirableSemaphore
*/
RPermitExpirableSemaphore getPermitExpirableSemaphore(K key);
RPermitExpirableSemaphoreRx getPermitExpirableSemaphore(K key);
/**
* Returns <code>RSemaphore</code> instance associated with key
@ -800,7 +800,7 @@ public interface RJsonStoreRx<K, V> extends RExpirableRx {
* @param key - map key
* @return semaphore
*/
RSemaphore getSemaphore(K key);
RSemaphoreRx getSemaphore(K key);
/**
* Returns <code>RLock</code> instance associated with key
@ -808,7 +808,7 @@ public interface RJsonStoreRx<K, V> extends RExpirableRx {
* @param key - map key
* @return fairlock
*/
RLock getFairLock(K key);
RLockRx getFairLock(K key);
/**
* Returns <code>RReadWriteLock</code> instance associated with key
@ -816,7 +816,7 @@ public interface RJsonStoreRx<K, V> extends RExpirableRx {
* @param key - map key
* @return readWriteLock
*/
RReadWriteLock getReadWriteLock(K key);
RReadWriteLockRx getReadWriteLock(K key);
/**
* Returns <code>RLock</code> instance associated with key
@ -824,6 +824,6 @@ public interface RJsonStoreRx<K, V> extends RExpirableRx {
* @param key - map key
* @return lock
*/
RLock getLock(K key);
RLockRx getLock(K key);
}

Loading…
Cancel
Save