blob: 78a974f451d4386e51f08737af63e5f76bc0f2ce (
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
|
//
// MCONNTPFetchArticleOperation.h
// mailcore2
//
// Created by Robert Widmann on 8/13/14.
// Copyright (c) 2014 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCONNTPFETCHARTICLEOPERATION_H
#define MAILCORE_MCONNTPFETCHARTICLEOPERATION_H
#import <Foundation/Foundation.h>
#import <MailCore/MCONNTPOperation.h>
NS_ASSUME_NONNULL_BEGIN
@interface MCONNTPFetchArticleOperation : MCONNTPOperation
/** This block will be called as data is downloaded from the network */
@property (nonatomic, copy) MCONNTPOperationProgressBlock 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 * __nullable error, NSData * __nullable messageData))completionBlock;
@end
NS_ASSUME_NONNULL_END
#endif
|