Uses of Class
software.amazon.awssdk.utils.cache.RefreshResult.Builder
-
Packages that use RefreshResult.Builder Package Description software.amazon.awssdk.utils.cache -
-
Uses of RefreshResult.Builder in software.amazon.awssdk.utils.cache
Methods in software.amazon.awssdk.utils.cache that return RefreshResult.Builder Modifier and Type Method Description static <T> RefreshResult.Builder<T>
RefreshResult. builder(T value)
Get a builder for creating aRefreshResult
.RefreshResult.Builder<T>
RefreshResult.Builder. prefetchTime(Instant prefetchTime)
Specify the time at which a thread that callsCachedSupplier.get()
should trigger a cache prefetch.RefreshResult.Builder<T>
RefreshResult.Builder. staleTime(Instant staleTime)
Specify the time at which the value in this cache is stale, and all calls toCachedSupplier.get()
should block to try to update the value.RefreshResult.Builder<T>
RefreshResult. toBuilder()
-