MCOIMAPFetchContentOperation Class Reference
Inherits from | MCOIMAPBaseOperation : MCOOperation : NSObject |
Declared in | MCOIMAPFetchContentOperation.h MCOIMAPFetchContentOperation.mm |
Overview
This class implements an operation to fetch the content of a message. It can be a part or a full message.
Instance Methods
operationCompleted
This methods is called on the main thread when the asynchronous operation is finished. Needs to be overriden by subclasses.
- (void)operationCompleted
Declared In
MCOOperation.h
start:
Starts the asynchronous fetch operation.
- (void)start:(void ( ^ ) ( NSError *error , NSData *data ))completionBlock
Parameters
- completionBlock
Called when the operation is finished.
On success
error
will be nil anddata
will contain the requested dataOn failure,
error
will be set withMCOErrorDomain
as domain and an error code available inMCOConstants.h
,data
will be nil
Declared In
MCOIMAPFetchContentOperation.h