diff options
author | Robert Widmann <devteam.codafi@gmail.com> | 2014-10-21 15:45:59 -0600 |
---|---|---|
committer | Robert Widmann <devteam.codafi@gmail.com> | 2014-10-21 15:45:59 -0600 |
commit | f60b89b388389ee877e907819442b2e366238040 (patch) | |
tree | 01402421d202387e011acb5f53b9e6e05a6c0aeb /src/objc | |
parent | 5380d0d5b11eef9a6fb5ac4ba70cb1b27737562e (diff) |
Range Fetching
Diffstat (limited to 'src/objc')
-rw-r--r-- | src/objc/nntp/MCONNTPSession.h | 4 | ||||
-rw-r--r-- | src/objc/nntp/MCONNTPSession.mm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/objc/nntp/MCONNTPSession.h b/src/objc/nntp/MCONNTPSession.h index 6712d9e4..8d12608b 100644 --- a/src/objc/nntp/MCONNTPSession.h +++ b/src/objc/nntp/MCONNTPSession.h @@ -68,11 +68,11 @@ /** Returns an operation that will fetch the list of article numbers. - MCONNTPFetchArticlesOperation * op = [session fetchArticlesOperation]; + MCONNTPFetchArticlesOperation * op = [session fetchAllArticlesOperation]; [op start:^(NSError * error, MCOIndexSet * articles) { }]; */ -- (MCONNTPFetchArticlesOperation *) fetchArticlesOperation:(NSString *)group; +- (MCONNTPFetchArticlesOperation *) fetchAllArticlesOperation:(NSString *)group; /** Returns an operation that will fetch the header of the given message. diff --git a/src/objc/nntp/MCONNTPSession.mm b/src/objc/nntp/MCONNTPSession.mm index e661eb65..d7db82b2 100644 --- a/src/objc/nntp/MCONNTPSession.mm +++ b/src/objc/nntp/MCONNTPSession.mm @@ -121,9 +121,9 @@ MCO_OBJC_SYNTHESIZE_SCALAR(dispatch_queue_t, dispatch_queue_t, setDispatchQueue, return result; } -- (MCONNTPFetchArticlesOperation *) fetchArticlesOperation:(NSString *)group +- (MCONNTPFetchArticlesOperation *) fetchAllArticlesOperation:(NSString *)group { - mailcore::MCNNTPFetchArticlesOperation * coreOp = MCO_NATIVE_INSTANCE->fetchArticlesOperation(MCO_FROM_OBJC(mailcore::String, group)); + mailcore::MCNNTPFetchArticlesOperation * coreOp = MCO_NATIVE_INSTANCE->fetchAllArticlesOperation(MCO_FROM_OBJC(mailcore::String, group)); return MCO_TO_OBJC_OP(coreOp); } |