Uses of Enum
org.redisson.api.EvictionMode
Packages that use EvictionMode
-
Uses of EvictionMode in org.redisson
Methods in org.redisson with parameters of type EvictionModeModifier and TypeMethodDescriptionvoidRedissonMapCache.setMaxSize(int maxSize, EvictionMode mode) RedissonMapCache.setMaxSizeAsync(int maxSize, EvictionMode mode) booleanRedissonMapCache.trySetMaxSize(int maxSize, EvictionMode mode) RedissonMapCache.trySetMaxSizeAsync(int maxSize, EvictionMode mode) -
Uses of EvictionMode in org.redisson.api
Methods in org.redisson.api that return EvictionModeModifier and TypeMethodDescriptionstatic EvictionModeReturns 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 EvictionModeModifier and TypeMethodDescriptionvoidRMapCache.setMaxSize(int maxSize, EvictionMode mode) Sets max size of the map and overrides current value.reactor.core.publisher.Mono<Void> RMapCacheReactive.setMaxSize(int maxSize, EvictionMode mode) Sets max size of the map and overrides current value.io.reactivex.rxjava3.core.CompletableRMapCacheRx.setMaxSize(int maxSize, EvictionMode mode) Sets max size of the map and overrides current value.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.reactor.core.publisher.Mono<Boolean> RMapCacheReactive.trySetMaxSize(int maxSize, EvictionMode mode) Tries to set max size of the map.io.reactivex.rxjava3.core.Single<Boolean> RMapCacheRx.trySetMaxSize(int maxSize, EvictionMode mode) Tries to set max size of the map.RMapCacheAsync.trySetMaxSizeAsync(int maxSize, EvictionMode mode) Tries to set max size of the map.