VALUE
- typepublic static interface CacheMono.MonoCacheBuilderMapMiss<VALUE>
Modifier and Type | Method and Description |
---|---|
default Mono<VALUE> |
onCacheMissResume(Mono<VALUE> other)
Setup original source to fallback to in case of cache miss.
|
Mono<VALUE> |
onCacheMissResume(Supplier<Mono<VALUE>> otherSupplier)
Setup original source to fallback to in case of cache miss, through a
Supplier which allows lazy resolution of the source. |
default Mono<VALUE> onCacheMissResume(Mono<VALUE> other)
other
- original sourceMono
that transparently looks up data from a cache
and store data into the cache.