public interface UploadStatusDelegate
Modifier and Type | Method and Description |
---|---|
void |
onCancelled(Context context,
UploadInfo uploadInfo)
Called when the upload is cancelled.
|
void |
onCompleted(Context context,
UploadInfo uploadInfo,
ServerResponse serverResponse)
Called when the upload is completed successfully.
|
void |
onError(Context context,
UploadInfo uploadInfo,
ServerResponse serverResponse,
Exception exception)
Called when an error happens during the upload.
|
void |
onProgress(Context context,
UploadInfo uploadInfo)
Called when the upload progress changes.
|
void onProgress(Context context, UploadInfo uploadInfo)
context
- contextuploadInfo
- upload status informationvoid onError(Context context, UploadInfo uploadInfo, ServerResponse serverResponse, Exception exception)
context
- contextuploadInfo
- upload status informationserverResponse
- response got from the server. It can be null if the server has not
responded or if the request has not reached the server due to a
networking problem.exception
- exception that caused the error. It can be null if the request successfully
reached the server, but it responded with a 4xx or 5xx status code.void onCompleted(Context context, UploadInfo uploadInfo, ServerResponse serverResponse)
context
- contextuploadInfo
- upload status informationserverResponse
- response got from the servervoid onCancelled(Context context, UploadInfo uploadInfo)
context
- contextuploadInfo
- upload status information