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

com.dahuatech.hutool.core.io.StreamProgress Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.core.io;

/**
 * Stream进度条
 *
 * @author Looly
 */
public interface StreamProgress {

  /** 开始 */
  void start();

  /**
   * 进行中
   *
   * @param progressSize 已经进行的大小
   */
  void progress(long progressSize);

  /** 结束 */
  void finish();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy