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

org.devocative.demeter.iservice.ICacheService Maven / Gradle / Ivy

The newest version!
package org.devocative.demeter.iservice;

import org.devocative.adroit.cache.ICache;
import org.devocative.adroit.cache.IMissedHitHandler;
import org.devocative.demeter.vo.CacheInfoVO;

import java.util.List;

public interface ICacheService {
	 ICache create(String id, int max);

	 ICache create(String id, int max, IMissedHitHandler missedHitHandler);

	void clear(String id);

	List list();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy