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

jcommon.extract.IResourceCallback Maven / Gradle / Ivy


package jcommon.extract;

/**
 * Called when extraction has completed. Done on the same worker thread
 * used for loading.
 * 
 * @author David Hoyt 
 */
public interface IResourceCallback {
	//
	public static final IResourceCallback None = null;
	//

	void error(Resources resources);
	void prepare(Resources resources);
	void cancelled(Resources resources);
	void completed(Resources resources);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy