NewPipe/app/src/main/java/us/shandian/giga/io/ProgressReport.java

11 lines
196 B
Java
Raw Normal View History

2020-11-22 10:16:27 +01:00
package us.shandian.giga.io;
public interface ProgressReport {
/**
* Report the size of the new file
*
* @param progress the new size
*/
void report(long progress);
}