com.dahuatech.hutool.core.io.StreamProgress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.core.io;
/**
* Stream进度条
*
* @author Looly
*/
public interface StreamProgress {
/** 开始 */
void start();
/**
* 进行中
*
* @param progressSize 已经进行的大小
*/
void progress(long progressSize);
/** 结束 */
void finish();
}