C
- The cache type@Internal public class DelegatingAsyncBlockingCache<C> extends Object implements AsyncCache<C>
Constructor and Description |
---|
DelegatingAsyncBlockingCache(SyncCache<C> delegate) |
Modifier and Type | Method and Description |
---|---|
<T> CompletableFuture<Optional<T>> |
get(Object key,
io.micronaut.core.type.Argument<T> requiredType)
Resolve the given value for the given key.
|
<T> CompletableFuture<T> |
get(Object key,
io.micronaut.core.type.Argument<T> requiredType,
Supplier<T> supplier)
Resolve the given value for the given key.
|
String |
getName() |
C |
getNativeCache() |
CompletableFuture<Boolean> |
invalidate(Object key)
Invalidate the value for the given key.
|
CompletableFuture<Boolean> |
invalidateAll()
Invalidate all cached values within this cache.
|
CompletableFuture<Boolean> |
put(Object key,
Object value)
Cache the specified value using the specified key.
|
<T> CompletableFuture<Optional<T>> |
putIfAbsent(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> CompletableFuture<Optional<T>> get(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> CompletableFuture<T> get(Object key, io.micronaut.core.type.Argument<T> requiredType, 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> CompletableFuture<Optional<T>> putIfAbsent(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 String getName()
public C getNativeCache()
getNativeCache
in interface Cache<C>
public CompletableFuture<Boolean> put(Object key, 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 CompletableFuture<Boolean> invalidate(Object key)
AsyncCache
invalidate
in interface AsyncCache<C>
key
- The key to invalidpublic CompletableFuture<Boolean> invalidateAll()
AsyncCache
invalidateAll
in interface AsyncCache<C>