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

cn.hutool.core.io.StreamProgress Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.core.io;

/**
 * Stream进度条
* 提供流拷贝进度监测,如开始、结束触发,以及进度回调。
* 注意进度回调的{@code total}参数为总大小,某些场景下无总大小的标记,则此值应为-1或者{@link Long#MAX_VALUE},表示此参数无效。 * * @author Looly */ public interface StreamProgress { /** * 开始 */ void start(); /** * 进行中 * * @param total 总大小,如果未知为 -1或者{@link Long#MAX_VALUE} * @param progressSize 已经进行的大小 */ void progress(long total, long progressSize); /** * 结束 */ void finish(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy