aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/pop/MCOPOPFetchMessageOperation.h
blob: d8091b25983f313d2d9de30a80c1aa940efb34f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
//  MCOFetchMessageOperation.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/29/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCOPOPFETCHMESSAGEOPERATION_H_

#define __MAILCORE_MCOPOPFETCHMESSAGEOPERATION_H_

#import <Foundation/Foundation.h>
#import <MailCore/MCOPOPOperation.h>

/** Fetch a message from POP3 */

typedef void (^MCOPOPOperationProgressBlock)(unsigned int current, unsigned int maximum);

@interface MCOPOPFetchMessageOperation : MCOPOPOperation

/** This block will be called as data is downloaded from the network */
@property (nonatomic, copy) MCOPOPOperationProgressBlock progress;

/** 
 Starts the asynchronous fetch operation.

 @param completionBlock Called when the operation is finished.

 - On success `error` will be nil and `data` will contain the message data
 
 - On failure, `error` will be set with `MCOErrorDomain` as domain and an 
   error code available in MCOConstants.h, `data` will be nil
*/
- (void) start:(void (^)(NSError * error, NSData * messageData))completionBlock;

@end

#endif