javadocs updated

pull/3355/head
Nikita Koksharov 4 years ago
parent d55f902a9d
commit ef24aa8a6d

@ -102,7 +102,7 @@ public interface RMap<K, V> extends ConcurrentMap<K, V>, RExpirable, RMapAsync<K
* *
* @param key - map key * @param key - map key
* @param value - map value * @param value - map value
* @return <code>null</code> if key is doesn't exists in the hash and value hasn't been set. * @return <code>null</code> if key doesn't exist in the hash and value hasn't been set.
* Previous value if key already exists in the hash and new value has been stored. * Previous value if key already exists in the hash and new value has been stored.
*/ */
V putIfExists(K key, V value); V putIfExists(K key, V value);

@ -342,7 +342,7 @@ public interface RMapReactive<K, V> extends RExpirableReactive {
* *
* @param key - map key * @param key - map key
* @param value - map value * @param value - map value
* @return <code>null</code> if key is doesn't exists in the hash and value hasn't been set. * @return <code>null</code> if key doesn't exist in the hash and value hasn't been set.
* Previous value if key already exists in the hash and new value has been stored. * Previous value if key already exists in the hash and new value has been stored.
*/ */
Mono<V> putIfExists(K key, V value); Mono<V> putIfExists(K key, V value);

@ -345,7 +345,7 @@ public interface RMapRx<K, V> extends RExpirableRx {
* *
* @param key - map key * @param key - map key
* @param value - map value * @param value - map value
* @return <code>null</code> if key is doesn't exists in the hash and value hasn't been set. * @return <code>null</code> if key doesn't exist in the hash and value hasn't been set.
* Previous value if key already exists in the hash and new value has been stored. * Previous value if key already exists in the hash and new value has been stored.
*/ */
Maybe<V> putIfExists(K key, V value); Maybe<V> putIfExists(K key, V value);

Loading…
Cancel
Save