1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- // Copyright 2018-present MongoDB Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #pragma once
- #include <chrono>
- #include <bsoncxx/stdx/optional.hpp>
- #include <mongocxx/read_preference.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- namespace options {
- ///
- /// Class representing the optional arguments to mongocxx::collection::estimated_document_count
- ///
- class MONGOCXX_API estimated_document_count {
- public:
- ///
- /// Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
- ///
- /// @param max_time
- /// The max amount of time (in milliseconds).
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/count/
- ///
- estimated_document_count& max_time(std::chrono::milliseconds max_time);
- ///
- /// The current max_time setting.
- ///
- /// @return The current max time (in milliseconds).
- ///
- /// @see https://docs.mongodb.com/master/reference/command/count/
- ///
- const bsoncxx::stdx::optional<std::chrono::milliseconds>& max_time() const;
- ///
- /// Sets the read_preference for this operation.
- ///
- /// @param rp
- /// The new read_preference.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/count/
- ///
- estimated_document_count& read_preference(class read_preference rp);
- ///
- /// The current read_preference for this operation.
- ///
- /// @return the current read_preference
- ///
- /// @see https://docs.mongodb.com/master/reference/command/count/
- ///
- const bsoncxx::stdx::optional<class read_preference>& read_preference() const;
- private:
- bsoncxx::stdx::optional<std::chrono::milliseconds> _max_time;
- bsoncxx::stdx::optional<class read_preference> _read_preference;
- };
- } // namespace options
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|