aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPIdleOperation.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/imap/MCOIMAPIdleOperation.h
parented6ba5a558bccf6024c1a5ab3db2b89d4c6a1420 (diff)
Work in progress on IMAP documentation.
Diffstat (limited to 'src/objc/imap/MCOIMAPIdleOperation.h')
-rw-r--r--src/objc/imap/MCOIMAPIdleOperation.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/objc/imap/MCOIMAPIdleOperation.h b/src/objc/imap/MCOIMAPIdleOperation.h
index 365457d9..2da19d19 100644
--- a/src/objc/imap/MCOIMAPIdleOperation.h
+++ b/src/objc/imap/MCOIMAPIdleOperation.h
@@ -10,13 +10,19 @@
#define __MAILCORE_MCOIMAPIDLEOPERATION_H_
+// This class implements an idle operation.
+
#import <MailCore/MCOIMAPBaseOperation.h>
@interface MCOIMAPIdleOperation : MCOIMAPBaseOperation
+// Interrupts the IDLE operation.
- (void) interruptIdle;
-- (void)start:(void (^)(NSError *error))completionBlock;
+// Starts the asynchronous operation.
+// On success, the completion block will be called with nil as error.
+// 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