C
- The cache type@Internal public class DelegatingAsyncCache<C> extends java.lang.Object implements AsyncCache<C>
Constructor and Description |
---|
DelegatingAsyncCache(SyncCache<C> delegate,
java.util.concurrent.ExecutorService executorService) |
Modifier and Type | Method and Description |
---|---|
<T> java.util.concurrent.CompletableFuture<java.util.Optional<T>> |
get(java.lang.Object key,
io.micronaut.core.type.Argument<T> requiredType)
Resolve the given value for the given key.
|
<T> java.util.concurrent.CompletableFuture<T> |
get(java.lang.Object key,
io.micronaut.core.type.Argument<T> requiredType,
java.util.function.Supplier<T> supplier)
Resolve the given value for the given key.
|
java.lang.String |
getName() |
C |
getNativeCache() |
java.util.concurrent.CompletableFuture<java.lang.Boolean> |
invalidate(java.lang.Object key)
Invalidate the value for the given key.
|
java.util.concurrent.CompletableFuture<java.lang.Boolean> |
invalidateAll()
Invalidate all cached values within this cache.
|
java.util.concurrent.CompletableFuture<java.lang.Boolean> |
put(java.lang.Object key,
java.lang.Object value)
Cache the specified value using the specified key.
|
<T> java.util.concurrent.CompletableFuture<java.util.Optional<T>> |
putIfAbsent(java.lang.Object key,
T value)
Cache the specified value using the specified key if it is not already present.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
get, get
getCacheInfo
public <T> java.util.concurrent.CompletableFuture<java.util.Optional<T>> get(java.lang.Object key, io.micronaut.core.type.Argument<T> requiredType)
AsyncCache
get
in interface AsyncCache<C>
T
- The concrete typekey
- The cache keyrequiredType
- The required typepublic <T> java.util.concurrent.CompletableFuture<T> get(java.lang.Object key, io.micronaut.core.type.Argument<T> requiredType, java.util.function.Supplier<T> supplier)
AsyncCache
Supplier
will
be invoked and the return value cached.get
in interface AsyncCache<C>
T
- The concrete typekey
- The cache keyrequiredType
- The required typesupplier
- The supplier that should be invoked if the value is not foundpublic <T> java.util.concurrent.CompletableFuture<java.util.Optional<T>> putIfAbsent(java.lang.Object key, T value)
AsyncCache
Cache the specified value using the specified key if it is not already present.
putIfAbsent
in interface AsyncCache<C>
T
- The concrete typekey
- The key with which the specified value is to be associatedvalue
- The value to be associated with the specified keyOptional.empty()
if the specified value parameter was cachedpublic java.lang.String getName()
public C getNativeCache()
getNativeCache
in interface Cache<C>
public java.util.concurrent.CompletableFuture<java.lang.Boolean> put(java.lang.Object key, java.lang.Object value)
AsyncCache
Cache the specified value using the specified key.
put
in interface AsyncCache<C>
key
- The key with which the specified value is to be associatedvalue
- The value to be associated with the specified keypublic java.util.concurrent.CompletableFuture<java.lang.Boolean> invalidate(java.lang.Object key)
AsyncCache
invalidate
in interface AsyncCache<C>
key
- The key to invalidpublic java.util.concurrent.CompletableFuture<java.lang.Boolean> invalidateAll()
AsyncCache
invalidateAll
in interface AsyncCache<C>