Uses of Class
org.redisson.api.EvictionMode
-
Packages that use EvictionMode Package Description org.redisson org.redisson.api -
-
Uses of EvictionMode in org.redisson
Methods in org.redisson with parameters of type EvictionMode Modifier and Type Method Description void
RedissonMapCache. setMaxSize(int maxSize, EvictionMode mode)
RFuture<Void>
RedissonMapCache. setMaxSizeAsync(int maxSize, EvictionMode mode)
boolean
RedissonMapCache. trySetMaxSize(int maxSize, EvictionMode mode)
RFuture<Boolean>
RedissonMapCache. trySetMaxSizeAsync(int maxSize, EvictionMode mode)
-
Uses of EvictionMode in org.redisson.api
Methods in org.redisson.api that return EvictionMode Modifier and Type Method Description static EvictionMode
EvictionMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static EvictionMode[]
EvictionMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.redisson.api with parameters of type EvictionMode Modifier and Type Method Description void
RMapCache. setMaxSize(int maxSize, EvictionMode mode)
Sets max size of the map and overrides current value.RFuture<Void>
RMapCacheAsync. setMaxSizeAsync(int maxSize, EvictionMode mode)
Sets max size of the map and overrides current value.boolean
RMapCache. trySetMaxSize(int maxSize, EvictionMode mode)
Tries to set max size of the map.RFuture<Boolean>
RMapCacheAsync. trySetMaxSizeAsync(int maxSize, EvictionMode mode)
Tries to set max size of the map.
-