CacheMonitor.java

15 lines | 235 B Blame History Raw Download
package br.ufrgs.inf.prosoft.adaptivecaching.cache;

/**
 * The interface Cache monitor.
 */
public interface CacheMonitor {

    /**
     * Gets cache info.
     *
     * @return the cache info
     */
    CacheInfo getCacheInfo();
}