// // MCONNTPPostOperation.h // mailcore2 // // Created by Daryle Walker on 2/21/16. // Copyright © 2016 MailCore. All rights reserved. // #ifndef MAILCORE_MCONNTPPOSTOPERATION_H #define MAILCORE_MCONNTPPOSTOPERATION_H #import #import NS_ASSUME_NONNULL_BEGIN @interface MCONNTPPostOperation : MCONNTPOperation /** This block will be called as data is downloaded from the network */ @property (nonatomic, copy) MCONNTPOperationProgressBlock progress; /** Starts the asynchronous send operation. @param completionBlock Called when the operation is finished. - On success `error` will be nil - On failure, `error` will be set with `MCOErrorDomain` as domain and an error code available in MCOConstants.h */ - (void) start:(void (^)(NSError * __nullable error))completionBlock; @end NS_ASSUME_NONNULL_END #endif