cn.geektool.core.io.StreamProgress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geektool-core Show documentation
Show all versions of geektool-core Show documentation
geektool核心,包括集合、字符串、Bean等工具
The newest version!
package cn.geektool.core.io;
/**
* Stream进度条
* @author jd
*
*/
public interface StreamProgress {
/**
* 开始
*/
void start();
/**
* 进行中
* @param progressSize 已经进行的大小
*/
void progress(long progressSize);
/**
* 结束
*/
void finish();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy