| Package | Description |
|---|---|
| org.redisson | |
| org.redisson.api | |
| org.redisson.reactive |
| Modifier and Type | Method and Description |
|---|---|
<K,V> RMapReactive<K,V> |
RedissonReactive.getMap(String name) |
<K,V> RMapReactive<K,V> |
RedissonReactive.getMap(String name,
Codec codec) |
<K,V> RMapReactive<K,V> |
RedissonReactive.getMap(String name,
Codec codec,
MapOptions<K,V> options) |
<K,V> RMapReactive<K,V> |
RedissonReactive.getMap(String name,
MapOptions<K,V> options) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
RMapCacheReactive<K,V>
Map-based cache with ability to set TTL for each entry via
RMapCacheReactive.put(Object, Object, long, TimeUnit) or RMapCacheReactive.putIfAbsent(Object, Object, long, TimeUnit) method. |
| Modifier and Type | Method and Description |
|---|---|
<K,V> RMapReactive<K,V> |
RedissonReactiveClient.getMap(String name)
Returns map instance by name.
|
<K,V> RMapReactive<K,V> |
RTransactionReactive.getMap(String name)
Returns transactional map instance by name.
|
<K,V> RMapReactive<K,V> |
RBatchReactive.getMap(String name)
Returns map instance by name.
|
<K,V> RMapReactive<K,V> |
RedissonReactiveClient.getMap(String name,
Codec codec)
Returns map instance by name
using provided codec for both map keys and values.
|
<K,V> RMapReactive<K,V> |
RTransactionReactive.getMap(String name,
Codec codec)
Returns transactional map instance by name
using provided codec for both map keys and values.
|
<K,V> RMapReactive<K,V> |
RBatchReactive.getMap(String name,
Codec codec) |
<K,V> RMapReactive<K,V> |
RedissonReactiveClient.getMap(String name,
Codec codec,
MapOptions<K,V> options)
Returns map instance by name
using provided codec for both map keys and values.
|
<K,V> RMapReactive<K,V> |
RedissonReactiveClient.getMap(String name,
MapOptions<K,V> options)
Returns map instance by name.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RedissonMapCacheReactive<K,V>
Map-based cache with ability to set TTL for each entry via
RedissonMapCacheReactive.put(Object, Object, long, TimeUnit) or RedissonMapCacheReactive.putIfAbsent(Object, Object, long, TimeUnit) method. |
class |
RedissonMapReactive<K,V>
Distributed and concurrent implementation of
ConcurrentMap
and Map |
| Modifier and Type | Method and Description |
|---|---|
<K,V> RMapReactive<K,V> |
RedissonTransactionReactive.getMap(String name) |
<K,V> RMapReactive<K,V> |
RedissonBatchReactive.getMap(String name) |
<K,V> RMapReactive<K,V> |
RedissonTransactionReactive.getMap(String name,
Codec codec) |
<K,V> RMapReactive<K,V> |
RedissonBatchReactive.getMap(String name,
Codec codec) |
Copyright © 2014–2018 The Redisson Project. All rights reserved.