summaryrefslogtreecommitdiffstats
path: root/common/resultset.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/resultset.h')
-rw-r--r--common/resultset.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/resultset.h b/common/resultset.h
index 4f2c278..db7d1e0 100644
--- a/common/resultset.h
+++ b/common/resultset.h
@@ -55,7 +55,11 @@ public:
55 55
56 void skip(int number); 56 void skip(int number);
57 57
58 qint64 replaySet(int offset, int batchSize, const Callback &callback); 58 struct ReplayResult {
59 qint64 replayedEntities;
60 bool replayedAll;
61 };
62 ReplayResult replaySet(int offset, int batchSize, const Callback &callback);
59 63
60 QByteArray id(); 64 QByteArray id();
61 65