aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/pop/MCOPOPFetchHeaderOperation.h
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-06 11:01:14 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-06 11:01:14 -0700
commitabc2b119c709a3fcea92ea1750f208b2bf47c9d5 (patch)
tree93bbf712bb9b0ff2e568b7bf951507a17b0d814d /src/objc/pop/MCOPOPFetchHeaderOperation.h
parented6ba5a558bccf6024c1a5ab3db2b89d4c6a1420 (diff)
Work in progress on IMAP documentation.
Diffstat (limited to 'src/objc/pop/MCOPOPFetchHeaderOperation.h')
-rw-r--r--src/objc/pop/MCOPOPFetchHeaderOperation.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/objc/pop/MCOPOPFetchHeaderOperation.h b/src/objc/pop/MCOPOPFetchHeaderOperation.h
index b062904a..d395df5b 100644
--- a/src/objc/pop/MCOPOPFetchHeaderOperation.h
+++ b/src/objc/pop/MCOPOPFetchHeaderOperation.h
@@ -19,7 +19,13 @@
@class MCOMessageHeader;
@interface MCOPOPFetchHeaderOperation : MCOPOPOperation
-- (void)start:(void (^)(NSError *error, MCOMessageHeader * header))completionBlock;
+
+// Starts the asynchronous operation.
+// On success, the completion block will be called with nil as error and the content of the fetched header.
+// On failure, error will be set with MCOErrorDomain as domain and an error code available in MCOConstants.h.
+// header will be nil.
+- (void) start:(void (^)(NSError * error, MCOMessageHeader * header))completionBlock;
+
@end
#endif