summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/sync_tail.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/sync_tail.h')
-rw-r--r--src/mongo/db/repl/sync_tail.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/repl/sync_tail.h b/src/mongo/db/repl/sync_tail.h
index 5932634362e..68e5f546845 100644
--- a/src/mongo/db/repl/sync_tail.h
+++ b/src/mongo/db/repl/sync_tail.h
@@ -57,7 +57,7 @@ namespace repl {
/**
* Runs _applyOplogUntil(stopOpTime)
*/
- virtual void oplogApplication(OperationContext* txn, const OpTime& stopOpTime);
+ virtual void oplogApplication(OperationContext* txn, const Timestamp& stopOpTime);
void oplogApplication();
bool peek(BSONObj* obj);
@@ -101,14 +101,14 @@ namespace repl {
// Prefetch and write a deque of operations, using the supplied function.
// Initial Sync and Sync Tail each use a different function.
// Returns the last OpTime applied.
- OpTime multiApply(OperationContext* txn, std::deque<BSONObj>& ops);
+ Timestamp multiApply(OperationContext* txn, std::deque<BSONObj>& ops);
/**
* Applies oplog entries until reaching "endOpTime".
*
* NOTE:Will not transition or check states
*/
- void _applyOplogUntil(OperationContext* txn, const OpTime& endOpTime);
+ void _applyOplogUntil(OperationContext* txn, const Timestamp& endOpTime);
private:
BackgroundSyncInterface* _networkQueue;