aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/nntp/MCNNTPAsyncSession.h
diff options
context:
space:
mode:
authorGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-21 17:31:59 -0600
committerGravatar Robert Widmann <devteam.codafi@gmail.com>2014-10-21 17:31:59 -0600
commit96f2623c2f1cba2fb5f625dbeae8a38eb20203c1 (patch)
treea11c883f368161e9d6f5b4600e66158eed90a502 /src/async/nntp/MCNNTPAsyncSession.h
parentdb7ec6896ffa7e1072d814d02fee2c5abae22ff2 (diff)
XOVER
Diffstat (limited to 'src/async/nntp/MCNNTPAsyncSession.h')
-rw-r--r--src/async/nntp/MCNNTPAsyncSession.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/async/nntp/MCNNTPAsyncSession.h b/src/async/nntp/MCNNTPAsyncSession.h
index d0fea2d0..b0686614 100644
--- a/src/async/nntp/MCNNTPAsyncSession.h
+++ b/src/async/nntp/MCNNTPAsyncSession.h
@@ -12,7 +12,8 @@ namespace mailcore {
class NNTPSession;
class NNTPFetchHeaderOperation;
class NNTPFetchArticleOperation;
- class MCNNTPFetchArticlesOperation;
+ class NNTPFetchArticlesOperation;
+ class NNTPFetchOverviewOperation;
class NNTPListNewsgroupsOperation;
class NNTPOperationQueueCallback;
class NNTPConnectionLogger;
@@ -51,11 +52,14 @@ namespace mailcore {
virtual dispatch_queue_t dispatchQueue();
#endif
- virtual MCNNTPFetchArticlesOperation * fetchAllArticlesOperation(String * group);
+ virtual NNTPFetchArticlesOperation * fetchAllArticlesOperation(String * group);
virtual NNTPFetchHeaderOperation * fetchHeaderOperation(String * groupName, unsigned int index);
virtual NNTPFetchArticleOperation * fetchArticleOperation(String *groupName, unsigned int index);
+ virtual NNTPFetchArticleOperation * fetchArticleByMessageIDOperation(String * groupname, String * messageID);
+
+ virtual NNTPFetchOverviewOperation * fetchOverviewOperationWithIndexes(String * groupName, IndexSet * indexes);
virtual NNTPListNewsgroupsOperation * listAllNewsgroupsOperation();
virtual NNTPListNewsgroupsOperation * listDefaultNewsgroupsOperation();