Interface IProgressListener
-
public interface IProgressListener
A listener for progress in file upload / download.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
exceptionOccured(java.lang.Throwable throwable)
void
finished(boolean successful)
void
reportProgress(int percentage, long numberOfBytes)
void
start(java.io.File file, java.lang.String operationName, long fileSize, java.lang.Long fileIdOrNull)
void
warningOccured(java.lang.String warningMessage)
-
-
-
Method Detail
-
start
void start(java.io.File file, java.lang.String operationName, long fileSize, java.lang.Long fileIdOrNull)
-
reportProgress
void reportProgress(int percentage, long numberOfBytes)
-
finished
void finished(boolean successful)
-
warningOccured
void warningOccured(java.lang.String warningMessage)
-
exceptionOccured
void exceptionOccured(java.lang.Throwable throwable)
-
-