AdobeNetworkHTTPAsyncRequest Class Reference
| Inherits from | NSObject |
| Declared in | AdobeNetworkHTTPAsyncRequest.h |
Overview
AdobeNetworkHTTPAsyncRequest is the class by which asynchronous network operations are managed.
It allows clients to:
- Change the priority of asynchronous network requests that have not yet been started.
- Cancel asynchronous network requests.
Properties
GUID
The request ID.
@property (nonatomic, readonly, strong) NSString *GUIDDiscussion
The request ID.
Declared In
AdobeNetworkHTTPAsyncRequest.hInstance Methods
cancel
Cancels the asynchronous request.
- (void)cancelDiscussion
Call cancel to cancel an asynchronous request. If the asynchronous request has not completed, i.e. neither the error or completion blocks have been called, then cancel will cancel the request and the cancellation block will be called upon successful cancellation. Note that it is possible to receive a completion or error callback after cancel has been called in the event when the asynchronous request completes before the cancellation can be processed.
Declared In
AdobeNetworkHTTPAsyncRequest.h