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

com.ejlchina.okhttps.Process Maven / Gradle / Ivy

There is a newer version: 3.5.3
Show newest version
package com.ejlchina.okhttps;

/**
 * 进度(上传或下载)
 */
public interface Process {

	int DEFAULT_STEP_BYTES = 8192;
	
	/**
	 * @return 完成比例
	 */
	double getRate();

	/**
	 * @return 总
	 */
	long getTotalBytes();
	
	/**
	 * @return 已完成任务量
	 */
	long getDoneBytes();
	
	/**
	 * @return 任务是否完成
	 */
	boolean isDone();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy