123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // 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 <bsoncxx/oid.hpp>
- #include <bsoncxx/stdx/string_view.hpp>
- #include <mongocxx/events/server_description.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- namespace events {
- ///
- /// An event notification sent when the driver observes a change in the status of a server it is
- /// connected to.
- ///
- /// @see "ServerDescriptionChangedEvent" in
- /// https://github.com/mongodb/specifications/blob/master/source/server-discovery-and-monitoring/server-discovery-and-monitoring-monitoring.rst
- ///
- class MONGOCXX_API server_changed_event {
- public:
- MONGOCXX_PRIVATE explicit server_changed_event(const void* event);
- ///
- /// Destroys a server_changed_event.
- ///
- ~server_changed_event();
- ///
- /// Returns the server host name.
- ///
- /// @return The host name.
- ///
- bsoncxx::stdx::string_view host() const;
- ///
- /// Returns the server port.
- ///
- /// @return The port.
- ///
- std::uint16_t port() const;
- ///
- /// An opaque id, unique to this topology for this mongocxx::client or mongocxx::pool.
- ///
- /// @return The id.
- ///
- const bsoncxx::oid topology_id() const;
- ///
- /// The server's description before it changed.
- ///
- /// @return The server_description.
- ///
- const server_description previous_description() const;
- ///
- /// The server's description after it changed.
- ///
- /// @return The server_description.
- ///
- const server_description new_description() const;
- private:
- const void* _event;
- };
- } // namespace events
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|