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

top.hmtools.io.IStreamProgress Maven / Gradle / Ivy

The newest version!
package top.hmtools.io;

/**
 * Stream进度条描述接口
 * @author HyboJ
 *
 */
public interface IStreamProgress {
	
	/**
	 * 开始
	 */
	public void start();
	
	/**
	 * 进行中
	 * @param progressSize 已经进行的大小
	 */
	public void progress(long progressSize);
	
	/**
	 * 结束
	 */
	public void finish();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy