All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ltsopensource.kv.cache.DataCache Maven / Gradle / Ivy

package com.github.ltsopensource.kv.cache;

/**
 * @author Robert HG ([email protected]) on 12/18/15.
 */
public interface DataCache {

    void put(K key, V value);

    V get(K key);

    V remove(K key);

    int size();

    void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy