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

edu.uci.ics.jung.visualization.util.Caching Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2005, The JUNG Authors
 * All rights reserved.
 *
 * This software is open-source under the BSD license; see either "license.txt"
 * or https://github.com/jrtom/jung/blob/master/LICENSE for a description.
 *
 * 
 */
package edu.uci.ics.jung.visualization.util;

/**
 * Interface to provide external controls to an
 * implementing class that manages a cache.
 * @author Tom Nelson - [email protected]
 *
 */
public interface Caching {
	
	/**
	 * ititialize resources for a cache
	 *
	 */
	void init();
	
	/**
	 * clear cache
	 *
	 */
	void clear();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy