summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/replication_coordinator_external_state.h
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2018-05-16 06:11:45 -0400
committerBenety Goh <benety@mongodb.com>2018-05-16 06:11:45 -0400
commit833be196169816ed1859510234e886b4320365d4 (patch)
treeb292e63a2f1cf81f55515426cb3bb16e8a444c04 /src/mongo/db/repl/replication_coordinator_external_state.h
parent5c722f8e8eea601f37519678b7458dc95befe28d (diff)
downloadmongo-833be196169816ed1859510234e886b4320365d4.tar.gz
SERVER-32335 remove unused function ReplicationCoordinatorExternalState::getInitialSyncBatchLimits()
Diffstat (limited to 'src/mongo/db/repl/replication_coordinator_external_state.h')
-rw-r--r--src/mongo/db/repl/replication_coordinator_external_state.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/mongo/db/repl/replication_coordinator_external_state.h b/src/mongo/db/repl/replication_coordinator_external_state.h
index 87ce0fef492..fa85660bdd4 100644
--- a/src/mongo/db/repl/replication_coordinator_external_state.h
+++ b/src/mongo/db/repl/replication_coordinator_external_state.h
@@ -34,10 +34,8 @@
#include "mongo/base/disallow_copying.h"
#include "mongo/bson/timestamp.h"
#include "mongo/db/repl/member_state.h"
-#include "mongo/db/repl/multiapplier.h"
-#include "mongo/db/repl/oplog_applier.h"
-#include "mongo/db/repl/oplog_buffer.h"
#include "mongo/db/repl/optime.h"
+#include "mongo/executor/task_executor.h"
#include "mongo/stdx/functional.h"
#include "mongo/util/concurrency/thread_pool.h"
#include "mongo/util/time_support.h"
@@ -298,11 +296,6 @@ public:
*/
virtual std::size_t getOplogFetcherMaxFetcherRestarts() const = 0;
- /**
- * Returns initial sync oplog application batch limits.
- */
- virtual OplogApplier::BatchLimits getInitialSyncBatchLimits() const = 0;
-
/*
* Creates noop writer instance. Setting the _noopWriter member is not protected by a guard,
* hence it must be called before multi-threaded operations start.