#include <mongocxx/v_noabi/mongocxx/options/index_view.hpp>
Used by MongoDB index view operations.
Public Member Functions | |
| index_view ()=default | |
| Default initialization. | |
| bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::document::value > const | commit_quorum () const |
| Gets the current commitQuorum setting. | |
| index_view & | commit_quorum (std::int32_t commit_quorum) |
| Sets the commit quorum for this operation. | |
| index_view & | commit_quorum (std::string commit_quorum) |
| Sets the commit quorum for this operation. | |
| bsoncxx::v_noabi::stdx::optional< std::chrono::milliseconds > const & | max_time () const |
| The current max_time setting. | |
| index_view & | max_time (std::chrono::milliseconds max_time) |
| Sets the maximum amount of time for this operation to run (server-side) in milliseconds. | |
| bsoncxx::v_noabi::stdx::optional< v_noabi::write_concern > const & | write_concern () const |
| Gets the current write concern. | |
| index_view & | write_concern (v_noabi::write_concern write_concern) |
| Sets the write concern for this operation. | |
| index_view (v1::indexes::create_one_options opts) | |
| Construct with the mongocxx::v1 equivalent. | |
| index_view (v1::indexes::create_many_options opts) | |
| Construct with the mongocxx::v1 equivalent. | |
| operator v1::indexes::create_many_options () const | |
| Convert to the mongocxx::v1 equivalent. | |
| operator v1::indexes::create_one_options () const | |
| Convert to the mongocxx::v1 equivalent. | |
Default initialization.
Construct with the mongocxx::v1 equivalent.
Construct with the mongocxx::v1 equivalent.
|
inline |
Gets the current commitQuorum setting.
This option may only be used with MongoDB version 4.4 or later.
| index_view & mongocxx::v_noabi::options::index_view::commit_quorum | ( | std::int32_t | commit_quorum | ) |
Sets the commit quorum for this operation.
This option may only be used with MongoDB version 4.4 or later.
| commit_quorum | Integer representing the minimum number of data-bearing voting replica set members (i.e. commit quorum), including the primary, that must report a successful index build before the primary marks the indexes as ready. A value of 0 disables quorum-voting behavior. |
| index_view & mongocxx::v_noabi::options::index_view::commit_quorum | ( | std::string | commit_quorum | ) |
Sets the commit quorum for this operation.
This option may only be used with MongoDB version 4.4 or later.
| commit_quorum | String representing the minimum number of data-bearing voting replica set members (i.e. commit quorum), including the primary, that must report a successful index build before the primary marks the indexes as ready. |
|
inline |
The current max_time setting.
|
inline |
Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
| max_time | The max amount of time (in milliseconds). |
|
inlineexplicit |
Convert to the mongocxx::v1 equivalent.
|
inlineexplicit |
Convert to the mongocxx::v1 equivalent.
|
inline |
Gets the current write concern.
|
inline |
Sets the write concern for this operation.
| write_concern | Object representing the write concern. |