aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/pop/MCOPOPFetchMessagesOperation.h
blob: ffbf623bcd58df6f734802d619f74f4247330ec0 (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
//
//  MCOPOPFetchMessagesOperation.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/29/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCOPOPFETCHMESSAGESOPERATION_H_

#define __MAILCORE_MCOPOPFETCHMESSAGESOPERATION_H_

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

// This is an asynchronous operation that will fetch the list of a messages on the account.

@interface MCOPOPFetchMessagesOperation : MCOPOPOperation

- (void)start:(void (^)(NSError *error, NSArray * messages))completionBlock;

@end

#endif