org.infinispan.quarkus.hibernate.cache.InternalCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-local-cache Show documentation
Show all versions of quarkus-local-cache Show documentation
Local-only Hibernate Cache optimized for Quarkus
package org.infinispan.quarkus.hibernate.cache;
import java.util.Map;
import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Predicate;
interface InternalCache {
Object getOrNull(Object key);
void putIfAbsent(Object key, Object value);
void put(Object key, Object value);
Object compute(Object key, BiFunction
© 2015 - 2025 Weber Informatics LLC | Privacy Policy