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

11 lines
206 B
Java

package us.shandian.giga.io;
public interface ProgressReport {
/**
* Report the size of the new file
*
* @param progress the new size
*/
void report(long progress);
}