summaryrefslogtreecommitdiff
path: root/src/mongo/client/remote_command_runner_impl.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-07-16 13:55:15 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-07-17 10:20:27 -0400
commita104bc1eab07388a4dc5b9930ecdd355ea93dd87 (patch)
treedafa61a7a1b1d5cb1e38a1c80c067c5ad30b7da2 /src/mongo/client/remote_command_runner_impl.cpp
parentd7e9b92a8117edab8869c132a4f7bfae3d3ff2ff (diff)
downloadmongo-a104bc1eab07388a4dc5b9930ecdd355ea93dd87.tar.gz
SERVER-19001 Move RemoteCommandRequest/RemoteCommandResponse into task_executor_interface library.
Also, move those types into the executor namespace and remove the RemoteCommandRunner interface type.
Diffstat (limited to 'src/mongo/client/remote_command_runner_impl.cpp')
-rw-r--r--src/mongo/client/remote_command_runner_impl.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/client/remote_command_runner_impl.cpp b/src/mongo/client/remote_command_runner_impl.cpp
index 88742d1e61f..063ec931784 100644
--- a/src/mongo/client/remote_command_runner_impl.cpp
+++ b/src/mongo/client/remote_command_runner_impl.cpp
@@ -42,6 +42,9 @@
namespace mongo {
namespace {
+using executor::RemoteCommandRequest;
+using executor::RemoteCommandResponse;
+
/**
* Calculates the timeout for a network operation expiring at "expDate", given
* that it is now "nowDate".