summaryrefslogtreecommitdiff
path: root/src/mongo/db/keys_collection_client_sharded.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2018-02-02 10:00:19 -0500
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2018-02-02 15:38:47 -0500
commit721d2547c6c2883b522740dc2b7ff420aeebb7e9 (patch)
tree71a1d88efdde373f26577a792d54e8bbb1ffda5b /src/mongo/db/keys_collection_client_sharded.h
parentce3049c1eae2f8e22c0e47086dfa6c77aaab90f7 (diff)
downloadmongo-721d2547c6c2883b522740dc2b7ff420aeebb7e9.tar.gz
SERVER-29908 Move sharding_task_executor under mongo/s
Diffstat (limited to 'src/mongo/db/keys_collection_client_sharded.h')
-rw-r--r--src/mongo/db/keys_collection_client_sharded.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mongo/db/keys_collection_client_sharded.h b/src/mongo/db/keys_collection_client_sharded.h
index 2ced14f2135..b3f337e60ff 100644
--- a/src/mongo/db/keys_collection_client_sharded.h
+++ b/src/mongo/db/keys_collection_client_sharded.h
@@ -28,22 +28,16 @@
#pragma once
-#include <memory>
-#include <string>
-
-#include "mongo/base/status.h"
#include "mongo/db/keys_collection_client.h"
namespace mongo {
-class OperationContext;
-class LogicalTime;
-class BSONObj;
class ShardingCatalogClient;
class KeysCollectionClientSharded : public KeysCollectionClient {
public:
KeysCollectionClientSharded(ShardingCatalogClient*);
+
/**
* Returns keys for the given purpose and with an expiresAt value greater than newerThanThis.
*/
@@ -62,4 +56,5 @@ public:
private:
ShardingCatalogClient* const _catalogClient;
};
+
} // namespace mongo