Uses of Class
org.redisson.api.MapOptions
-
Packages that use MapOptions Package Description org.redisson org.redisson.api -
-
Uses of MapOptions in org.redisson
Methods in org.redisson with parameters of type MapOptions Modifier and Type Method Description <K,V>
RMap<K,V>Redisson. getMap(String name, MapOptions<K,V> options)
<K,V>
RMap<K,V>Redisson. getMap(String name, Codec codec, MapOptions<K,V> options)
<K,V>
RMapReactive<K,V>RedissonReactive. getMap(String name, MapOptions<K,V> options)
<K,V>
RMapReactive<K,V>RedissonReactive. getMap(String name, Codec codec, MapOptions<K,V> options)
<K,V>
RMapRx<K,V>RedissonRx. getMap(String name, MapOptions<K,V> options)
<K,V>
RMapRx<K,V>RedissonRx. getMap(String name, Codec codec, MapOptions<K,V> options)
<K,V>
RMapCache<K,V>Redisson. getMapCache(String name, MapOptions<K,V> options)
<K,V>
RMapCache<K,V>Redisson. getMapCache(String name, Codec codec, MapOptions<K,V> options)
<K,V>
RMapCacheReactive<K,V>RedissonReactive. getMapCache(String name, MapOptions<K,V> options)
<K,V>
RMapCacheReactive<K,V>RedissonReactive. getMapCache(String name, Codec codec, MapOptions<K,V> options)
<K,V>
RMapCacheRx<K,V>RedissonRx. getMapCache(String name, MapOptions<K,V> options)
<K,V>
RMapCacheRx<K,V>RedissonRx. getMapCache(String name, Codec codec, MapOptions<K,V> options)
MapWriteBehindTask
WriteBehindService. start(String name, MapOptions<?,?> options)
Constructors in org.redisson with parameters of type MapOptions Constructor Description MapWriteBehindTask(String name, CommandAsyncExecutor commandExecutor, MapOptions<?,?> options)
RedissonMap(Codec codec, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson, MapOptions<K,V> options, WriteBehindService writeBehindService)
RedissonMap(CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson, MapOptions<K,V> options, WriteBehindService writeBehindService)
RedissonMapCache(Codec codec, EvictionScheduler evictionScheduler, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson, MapOptions<K,V> options, WriteBehindService writeBehindService)
RedissonMapCache(EvictionScheduler evictionScheduler, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson, MapOptions<K,V> options, WriteBehindService writeBehindService)
-
Uses of MapOptions in org.redisson.api
Subclasses of MapOptions in org.redisson.api Modifier and Type Class Description class
LocalCachedMapOptions<K,V>
Configuration for LocalCachedMap object.Methods in org.redisson.api that return MapOptions Modifier and Type Method Description static <K,V>
MapOptions<K,V>MapOptions. defaults()
Creates a new instance of MapOptions with default options.MapOptions<K,V>
MapOptions. loader(MapLoader<K,V> loader)
SetsMapLoader
object.MapOptions<K,V>
MapOptions. writeBehindBatchSize(int writeBehindBatchSize)
Sets write behind tasks batch size.MapOptions<K,V>
MapOptions. writeBehindDelay(int writeBehindDelay)
Sets write behind tasks execution delay.MapOptions<K,V>
MapOptions. writeMode(MapOptions.WriteMode writeMode)
Sets write mode.MapOptions<K,V>
MapOptions. writer(MapWriter<K,V> writer)
SetsMapWriter
object.Methods in org.redisson.api with parameters of type MapOptions Modifier and Type Method Description <K,V>
RMap<K,V>RedissonClient. getMap(String name, MapOptions<K,V> options)
Returns map instance by name.<K,V>
RMap<K,V>RedissonClient. 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.<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>
RMapRx<K,V>RedissonRxClient. getMap(String name, MapOptions<K,V> options)
Returns map instance by name.<K,V>
RMapRx<K,V>RedissonRxClient. 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>
RMapCache<K,V>RedissonClient. getMapCache(String name, MapOptions<K,V> options)
Returns map-based cache instance by name.<K,V>
RMapCache<K,V>RedissonClient. getMapCache(String name, Codec codec, MapOptions<K,V> options)
Returns map-based cache instance byname
using providedcodec
for both cache keys and values.<K,V>
RMapCacheReactive<K,V>RedissonReactiveClient. getMapCache(String name, MapOptions<K,V> options)
Returns map-based cache instance by name.<K,V>
RMapCacheReactive<K,V>RedissonReactiveClient. getMapCache(String name, Codec codec, MapOptions<K,V> options)
Returns map-based cache instance byname
using providedcodec
for both cache keys and values.<K,V>
RMapCacheRx<K,V>RedissonRxClient. getMapCache(String name, MapOptions<K,V> options)
Returns map-based cache instance by name.<K,V>
RMapCacheRx<K,V>RedissonRxClient. getMapCache(String name, Codec codec, MapOptions<K,V> options)
Returns map-based cache instance byname
using providedcodec
for both cache keys and values.Constructors in org.redisson.api with parameters of type MapOptions Constructor Description MapOptions(MapOptions<K,V> copy)
-