Interface UploadProgressListener
public interface UploadProgressListener
Callback interface to get upload progress.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonUploadProgress(long uploadedBytes, long totalBytes) Callback for displaying upload progress.
-
Method Details
-
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
-