aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPIdleOperation.h
blob: fb83b283038bbe070539c330bacc9f0a8f7b129c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
//  MCOIMAPIdleOperation.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/25/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCOIMAPIDLEOPERATION_H

#define MAILCORE_MCOIMAPIDLEOPERATION_H

/** 
 This class implements an IMAP IDLE. IDLE is used to keep a connection
 open with the server so that new messages can be pushed to the client.
 See [RFC2177](http://tools.ietf.org/html/rfc2177)
*/

#import <MailCore/MCOIMAPBaseOperation.h>

NS_ASSUME_NONNULL_BEGIN
@interface MCOIMAPIdleOperation : MCOIMAPBaseOperation

/** Stop the current IDLE session */
- (void) interruptIdle;

/** 
 Starts IDLE

 @param completionBlock Called when the IDLE times out, errors out or detects a change

 - 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