MongoDB C++ Driver 4.2.0
Loading...
Searching...
No Matches
topology_changed_event.hpp
Go to the documentation of this file.
1// Copyright 2009-present MongoDB, Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#pragma once
16
17#include <mongocxx/events/topology_changed_event-fwd.hpp> // IWYU pragma: export
18
19//
20
21#include <mongocxx/v1/events/topology_description_changed.hpp> // IWYU pragma: export
22
23#include <bsoncxx/oid.hpp>
24
26
28
29namespace mongocxx {
30namespace v_noabi {
31namespace events {
32
40 private:
42
43 public:
48
53 : _event{event} {}
54
58 explicit operator v1::events::topology_description_changed() const {
59 return _event;
60 }
61
69 return _event.topology_id();
70 }
71
78 return _event.previous_description();
79 }
80
87 return _event.new_description();
88 }
89};
90
91} // namespace events
92} // namespace v_noabi
93} // namespace mongocxx
94
95namespace mongocxx {
96namespace v_noabi {
97
104
111
112} // namespace v_noabi
113} // namespace mongocxx
114
116
Represents a MongoDB BSON ObjectId.
Definition oid.hpp:41
TopologyDescriptionChangedEvent from the SDAM Logging and Monitoring specification.
Definition topology_description_changed.hpp:41
A change in the topology description (including its server descriptions).
Definition topology_changed_event.hpp:39
topology_changed_event(v1::events::topology_description_changed const &event)
Construct with the mongocxx::v1 equivalent.
Definition topology_changed_event.hpp:52
topology_description new_description() const
The server's description after it changed.
Definition topology_changed_event.hpp:86
bsoncxx::v_noabi::oid topology_id() const
An opaque id, unique to this topology for this mongocxx::v_noabi::client or mongocxx::v_noabi::pool.
Definition topology_changed_event.hpp:68
topology_description previous_description() const
The server's description before it changed.
Definition topology_changed_event.hpp:77
A description of the topology of one or more connected MongoDB servers.
Definition topology_description.hpp:43
#define MONGOCXX_ABI_NO_EXPORT
Excludes the associated entity from being part of the ABI.
Definition export.hpp:20
The mongocxx v_noabi macro guard postlude header.
The mongocxx v_noabi macro guard prelude header.
Declares entities describing APM events.
Declares entities whose ABI stability is NOT guaranteed.
v1::bulk_write to_v1(v_noabi::bulk_write v)
Convert to the mongocxx::v1 equivalent of v.
Definition bulk_write.hpp:162
v_noabi::bulk_write from_v1(v1::bulk_write v)
Convert to the mongocxx::v_noabi equivalent of v.
Definition bulk_write.hpp:155
The top-level namespace within which all mongocxx library entities are declared.
Declares mongocxx::v_noabi::events::topology_changed_event.
Provides mongocxx::v1::events::topology_description_changed.
Provides bsoncxx::v_noabi::oid.
Provides mongocxx::v_noabi::events::topology_description.