34 lines
711 B
Objective-C
34 lines
711 B
Objective-C
//
|
|
// MCOIMAPOperation.h
|
|
// mailcore2
|
|
//
|
|
// Created by DINH Viêt Hoà on 3/23/13.
|
|
// Copyright (c) 2013 MailCore. All rights reserved.
|
|
//
|
|
|
|
#ifndef MAILCORE_MCOIMAPOPERATION_H
|
|
|
|
#define MAILCORE_MCOIMAPOPERATION_H
|
|
|
|
/** This class implements a generic IMAP operation */
|
|
|
|
#import <MailCore/MCOIMAPBaseOperation.h>
|
|
|
|
@interface MCOIMAPOperation : MCOIMAPBaseOperation
|
|
|
|
/**
|
|
Starts the asynchronous append 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 * error))completionBlock;
|
|
|
|
@end
|
|
|
|
#endif
|