Interface UploadProgressListener
-
public interface UploadProgressListener
Callback interface to get upload progress.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonUploadProgress(long uploadedBytes, long totalBytes)Callback for displaying upload progress.
-
-
-
Method Detail
-
onUploadProgress
void onUploadProgress(long uploadedBytes, long totalBytes)
Callback for displaying upload progress.- Parameters:
uploadedBytes- the number of bytes uploaded at the momenttotalBytes- the total number of bytes to be uploaded
-
-