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 voidRedissonMapCache. setMaxSize(int maxSize, EvictionMode mode)RFuture<Void>RedissonMapCache. setMaxSizeAsync(int maxSize, EvictionMode mode)booleanRedissonMapCache. 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 EvictionModeEvictionMode. 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 voidRMapCache. 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.booleanRMapCache. 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.
-