Deprecated. Defines default delegate methods for upload and download progress notification Protocol to be adapted by client classes in order to hook in for didReceiveBytes / didSendBytes / incrementDownloadSizeBy / incrementUploadSizeBy delegates
All members of SDMProgressDelegate, including inherited members.
MethodsMethod | Description |
---|---|
- (void) request: (id< SDMRequesting >) request didReceiveBytes: (long long) bytes | Delegate method called when the request receives data. |
- (void) request: (id< SDMRequesting >) request didSendBytes: (long long) bytes | Delegate method called when the request sends data. |
- (void) request: (id< SDMRequesting >) request incrementDownloadSizeBy: (long long) newLength | Delegate method called when the request needs to change the download content size. |
- (void) request: (id< SDMRequesting >) request incrementUploadSizeBy: (long long) newLength | Delegate method called when the request needs to change the length of the content to upload. |
- (void) setProgress: (float) newProgress | Delegate method called to update UIProgressViews. |