Uses of Interface
io.github.resilience4j.cache.Cache
Packages that use Cache
-
Uses of Cache in io.github.resilience4j.cache
Methods in io.github.resilience4j.cache that return CacheModifier and TypeMethodDescriptionstatic <K,V> Cache <K, V> Cache.of(javax.cache.Cache<K, V> cache) Creates a Retry with default configuration.Methods in io.github.resilience4j.cache with parameters of type CacheModifier and TypeMethodDescriptionstatic <K,R> io.github.resilience4j.core.functions.CheckedFunction <K, R> Cache.decorateCallable(Cache<K, R> cache, Callable<R> callable) Creates a functions which returns a value from a cache, if it exists.static <K,R> io.github.resilience4j.core.functions.CheckedFunction <K, R> Cache.decorateCheckedSupplier(Cache<K, R> cache, io.github.resilience4j.core.functions.CheckedSupplier<R> supplier) Creates a functions which returns a value from a cache, if it exists.static <K,R> Function <K, R> Cache.decorateSupplier(Cache<K, R> cache, Supplier<R> supplier) Creates a functions which returns a value from a cache, if it exists. -
Uses of Cache in io.github.resilience4j.cache.internal
Classes in io.github.resilience4j.cache.internal that implement Cache