public interface BeforeSendUploadDataCallback extends NetworkSyncCallback<BeforeSendUploadDataCallback.Params,BeforeSendUploadDataCallback.Response>
The callback can be used to override the upload data before it is sent to the web server.
Use one of the override()
methods to modify the upload data.
Use the BeforeSendUploadDataCallback.Response.proceed()
method if you do not need to modify the upload data.
If the callback throws an exception, the BeforeSendUploadDataCallback.Response.proceed()
method will be invoked.
Modifier and Type | Interface and Description |
---|---|
static interface |
BeforeSendUploadDataCallback.Params
The parameters of the
BeforeSendUploadDataCallback . |
static interface |
BeforeSendUploadDataCallback.Response
A response for
BeforeSendUploadDataCallback . |
on