MongoDB C++ Driver mongocxx-3.10.1
Loading...
Searching...
No Matches
Public Member Functions | List of all members
mongocxx::v_noabi::events::server_description Class Reference

Class representing what the driver knows about a MongoDB server. More...

#include <server_description.hpp>

Public Member Functions

 ~server_description ()
 Destroys a server_description.
 
std::uint32_t id () const
 An opaque id, unique to this server for this mongocxx::v_noabi::client or mongocxx::v_noabi::pool.
 
std::int64_t round_trip_time () const
 The duration of the last hello call, indicating network latency.
 
bsoncxx::v_noabi::stdx::string_view type () const
 The server type: "Unknown", "Standalone", "Mongos", "PossiblePrimary", "RSPrimary", "RSSecondary", "RSArbiter", "RSOther", or "RSGhost".
 
bsoncxx::v_noabi::document::view is_master () const
 
bsoncxx::v_noabi::document::view hello () const
 The server's last response to the "hello" command, or an empty document if the driver has not yet reached the server or there was an error.
 
bsoncxx::v_noabi::stdx::string_view host () const
 Returns the server host name.
 
std::uint16_t port () const
 Returns the server port.
 

Detailed Description

Class representing what the driver knows about a MongoDB server.

Member Function Documentation

◆ hello()

bsoncxx::v_noabi::document::view mongocxx::v_noabi::events::server_description::hello ( ) const

The server's last response to the "hello" command, or an empty document if the driver has not yet reached the server or there was an error.

Returns
The response as a short-lived document view.

◆ host()

bsoncxx::v_noabi::stdx::string_view mongocxx::v_noabi::events::server_description::host ( ) const

Returns the server host name.

Returns
The host name.

◆ id()

std::uint32_t mongocxx::v_noabi::events::server_description::id ( ) const

An opaque id, unique to this server for this mongocxx::v_noabi::client or mongocxx::v_noabi::pool.

Returns
The id.

◆ is_master()

bsoncxx::v_noabi::document::view mongocxx::v_noabi::events::server_description::is_master ( ) const
Returns
The response as a short-lived document view.
Deprecated:
use hello instead.

◆ port()

std::uint16_t mongocxx::v_noabi::events::server_description::port ( ) const

Returns the server port.

Returns
The port.

◆ round_trip_time()

std::int64_t mongocxx::v_noabi::events::server_description::round_trip_time ( ) const

The duration of the last hello call, indicating network latency.

Returns
The duration in microseconds.

◆ type()

bsoncxx::v_noabi::stdx::string_view mongocxx::v_noabi::events::server_description::type ( ) const

The server type: "Unknown", "Standalone", "Mongos", "PossiblePrimary", "RSPrimary", "RSSecondary", "RSArbiter", "RSOther", or "RSGhost".

Returns
The type as a short-lived string view.

The documentation for this class was generated from the following file: