@FunctionalInterface
public interface IUploadProgressChangedHandler
| Modifier and Type | Method and Description |
|---|---|
void |
progressChanged(java.lang.String currentFileNo,
java.lang.String currentFileName,
double bytesUploaded,
double bytesTotal,
long bytesPerSecond)
Called when progress state has changed.
|
void progressChanged(java.lang.String currentFileNo,
java.lang.String currentFileName,
double bytesUploaded,
double bytesTotal,
long bytesPerSecond)
currentFileNo - Number of the file that's currently uploading.currentFileName - File name of the file that's currently uploading.bytesUploaded - Number of bytes already uploaded.bytesTotal - Number of total bytes.bytesPerSecond - Upload speed: Bytes per scond.