// Copyright 2014 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 #include #include #include #include #include #include namespace mongocxx { MONGOCXX_INLINE_NAMESPACE_BEGIN namespace options { /// /// Class representing the optional arguments to a MongoDB distinct command. /// class MONGOCXX_API distinct { public: /// /// Sets the collation for this operation. /// /// @param collation /// The new collation. /// /// @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/distinct/ /// distinct& collation(bsoncxx::document::view_or_value collation); /// /// Retrieves the current collation for this operation. /// /// @return /// The current collation. /// /// @see https://docs.mongodb.com/master/reference/command/distinct/ /// const stdx::optional& collation() const; /// /// 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/distinct/ /// distinct& 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/distinct/ /// const stdx::optional& 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/distinct/ /// distinct& 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/distinct/ /// const stdx::optional& read_preference() const; private: stdx::optional _collation; stdx::optional _max_time; stdx::optional _read_preference; }; } // namespace options MONGOCXX_INLINE_NAMESPACE_END } // namespace mongocxx #include