Package com.peterphi.std.io
Interface ICopyProgressMonitor
public interface ICopyProgressMonitor
-
Method Summary
-
Method Details
-
size
void size(long bytes) A method which MAY be called to inform the monitor of the total size- Parameters:
bytes
-
-
start
void start() -
blocksize
void blocksize(int size) A method which MAY be called to inform the monitor of the block size- Parameters:
size
-
-
progress
void progress(long bytes) -
failure
void failure() -
complete
void complete()
-