
cacheonix.cache.Cache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datanucleus-cache Show documentation
Show all versions of datanucleus-cache Show documentation
DataNucleus third-party Caching plugin
package cacheonix.cache;
import java.util.Map;
public interface Cache extends Map
{
V get(Object key);
String getName();
V put(K key, V value);
V put(K key, V value, long expirationMillis);
V remove(Object key);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy