summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/read_after_optime_response.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/read_after_optime_response.h')
-rw-r--r--src/mongo/db/repl/read_after_optime_response.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mongo/db/repl/read_after_optime_response.h b/src/mongo/db/repl/read_after_optime_response.h
index b906dc196d4..33163131363 100644
--- a/src/mongo/db/repl/read_after_optime_response.h
+++ b/src/mongo/db/repl/read_after_optime_response.h
@@ -28,10 +28,10 @@
#pragma once
-#include <boost/date_time/posix_time/posix_time_types.hpp>
#include <string>
#include "mongo/base/status.h"
+#include "mongo/stdx/chrono.h"
namespace mongo {
@@ -56,7 +56,7 @@ namespace repl {
/**
* Constructs a response with wait set to true along with the given parameters.
*/
- ReadAfterOpTimeResponse(Status status, boost::posix_time::milliseconds duration);
+ ReadAfterOpTimeResponse(Status status, stdx::chrono::milliseconds duration);
/**
* Appends to the builder the timeout and duration info if didWait() is true.
@@ -70,7 +70,7 @@ namespace repl {
* Returns the amount of duration waiting for opTime to pass.
* Valid only if didWait is true.
*/
- boost::posix_time::milliseconds getDuration() const;
+ stdx::chrono::milliseconds getDuration() const;
/**
* Returns more details about an error if it occurred.
@@ -79,11 +79,11 @@ namespace repl {
private:
ReadAfterOpTimeResponse(Status status,
- boost::posix_time::milliseconds duration,
+ stdx::chrono::milliseconds duration,
bool waited);
bool _waited;
- boost::posix_time::milliseconds _duration;
+ stdx::chrono::milliseconds _duration;
Status _status;
};