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

com.clickntap.tool.cache.Cache Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package com.clickntap.tool.cache;

import java.io.Serializable;

public interface Cache {
	public Serializable get(Serializable key) throws Exception;

	public Serializable put(Serializable key, Serializable value) throws Exception;

	public void remove(Serializable key) throws Exception;

	public void removeAll() throws Exception;

	public boolean contains(Serializable key) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy