ch.inftec.ju.util.collection.Cache Maven / Gradle / Ivy
package ch.inftec.ju.util.collection;
/**
* Simple interface for a Cache.
*
* This acts as a simplified replacement for real use caches like Google Guava AbstractCache.
*/
public interface Cache {
V get(K key);
void put(K key, V value);
long size();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy