summaryrefslogtreecommitdiff
path: root/src/mongo/rpc/request_builder_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/rpc/request_builder_interface.h')
-rw-r--r--src/mongo/rpc/request_builder_interface.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mongo/rpc/request_builder_interface.h b/src/mongo/rpc/request_builder_interface.h
index beaf27b7823..aef872cb0b4 100644
--- a/src/mongo/rpc/request_builder_interface.h
+++ b/src/mongo/rpc/request_builder_interface.h
@@ -39,7 +39,6 @@ class BSONObj;
class StringData;
namespace rpc {
-class DocumentRange;
/**
* Constructs an RPC request.
@@ -80,18 +79,6 @@ public:
virtual RequestBuilderInterface& setCommandArgs(BSONObj commandArgs) = 0;
/**
- * Add a range of input documents to the request. This method can be called multiple times
- * before calling done().
- */
- virtual RequestBuilderInterface& addInputDocs(DocumentRange inputDocs) = 0;
-
- /**
- * Add a single output document to the request. This method can be called multiple times
- * before calling done().
- */
- virtual RequestBuilderInterface& addInputDoc(BSONObj inputDoc) = 0;
-
- /**
* Gets the protocol used to serialize this request. This should only be used for asserts,
* and not for runtime behavior changes, which should be handled with polymorphism.
*/