37 lines
865 B
Objective-C
37 lines
865 B
Objective-C
//
|
|
// MCOIMAPSearchOperation.h
|
|
// mailcore2
|
|
//
|
|
// Created by DINH Viêt Hoà on 3/25/13.
|
|
// Copyright (c) 2013 MailCore. All rights reserved.
|
|
//
|
|
|
|
#ifndef MAILCORE_MCOSEARCHOPERATION_H
|
|
|
|
#define MAILCORE_MCOSEARCHOPERATION_H
|
|
|
|
/** This class runs an IMAP search operation */
|
|
|
|
#import <MailCore/MCOIMAPBaseOperation.h>
|
|
|
|
@class MCOIndexSet;
|
|
|
|
@interface MCOIMAPSearchOperation : MCOIMAPBaseOperation
|
|
|
|
/**
|
|
Starts the asynchronous search operation.
|
|
|
|
@param completionBlock Called when the operation is finished.
|
|
|
|
- On success `error` will be nil and `searchResults` will contain the UIDs of any matching messages
|
|
|
|
- On failure, `error` will be set with `MCOErrorDomain` as domain and an
|
|
error code available in MCOConstants.h, `searchResult` will be nil
|
|
*/
|
|
|
|
- (void) start:(void (^)(NSError * error, MCOIndexSet * searchResult))completionBlock;
|
|
|
|
@end
|
|
|
|
#endif
|