diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-19 14:07:17 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-19 14:07:17 +0100 |
commit | 1812c077d6461b3e9fb865f47cffafc3c179e136 (patch) | |
tree | 3f10a86e1867576d8987d25f489c27b49875aa35 /common/clientapi.cpp | |
parent | d5b28efe4d7fc2a984243417d923ff5727234e94 (diff) | |
download | sink-1812c077d6461b3e9fb865f47cffafc3c179e136.tar.gz sink-1812c077d6461b3e9fb865f47cffafc3c179e136.zip |
Disambiguate between what we want to flush
Even though the implementation is still exactly the same
Diffstat (limited to 'common/clientapi.cpp')
-rw-r--r-- | common/clientapi.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/clientapi.cpp b/common/clientapi.cpp index 40257bb..0b417d3 100644 --- a/common/clientapi.cpp +++ b/common/clientapi.cpp | |||
@@ -229,6 +229,11 @@ KAsync::Job<void> Store::flushMessageQueue(const QByteArrayList &resourceIdentif | |||
229 | .template then<void>([](){}); | 229 | .template then<void>([](){}); |
230 | } | 230 | } |
231 | 231 | ||
232 | KAsync::Job<void> Store::flushReplayQueue(const QByteArrayList &resourceIdentifier) | ||
233 | { | ||
234 | return flushMessageQueue(resourceIdentifier); | ||
235 | } | ||
236 | |||
232 | template <class DomainType> | 237 | template <class DomainType> |
233 | KAsync::Job<DomainType> Store::fetchOne(const Akonadi2::Query &query) | 238 | KAsync::Job<DomainType> Store::fetchOne(const Akonadi2::Query &query) |
234 | { | 239 | { |