io.quarkus.cache.CaffeineCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cache Show documentation
Show all versions of quarkus-cache Show documentation
Enable application data caching in CDI beans
package io.quarkus.cache;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.function.Function;
public interface CaffeineCache extends Cache {
/**
* Returns an unmodifiable {@link Set} view of the keys contained in this cache. If the cache entries are modified while an
* iteration over the set is in progress, the set will remain unchanged.
*
* @return a set view of the keys contained in this cache
*/
Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy