Skip to content

Commit

Permalink
PROTON-2860: Remove the unsettled API marker from the C++ reconnect API
Browse files Browse the repository at this point in the history
  • Loading branch information
ssorj committed Oct 29, 2024
1 parent 60ab050 commit 6b95b8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions cpp/include/proton/connection_options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ class connection_options {
/// **Unsettled API** - Set the SASL configuration path.
PN_CPP_EXTERN connection_options& sasl_config_path(const std::string&);

/// **Unsettled API** - Set reconnect timing options.
/// Set reconnect timing options.
///
/// If reconnect timing options are set, but no specific reconnect or failover urls are set
/// then the original url used for the connection will be used as the reconnect url.
PN_CPP_EXTERN connection_options& reconnect(const reconnect_options&);

/// **Unsettled API** - Set reconnect URL.
/// Set reconnect URL.
///
/// If the connection to the primary connection url fails then try to reconnect using
/// the reconnect url.
Expand All @@ -192,7 +192,7 @@ class connection_options {
/// If both the failover_urls and reconnect_url options are set then the behavior is not defined.
PN_CPP_EXTERN connection_options& reconnect_url(const std::string&);

/// **Unsettled API** - Set Fail-over URLs.
/// Set Fail-over URLs.
///
/// If the connection to the primary connection url fails then try each of the fail-over
/// connection urls in turn.
Expand Down
3 changes: 1 addition & 2 deletions cpp/include/proton/reconnect_options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@

namespace proton {

/// **Unsettled API** - Options for reconnect and failover after
/// connection loss.
/// Options for reconnect and failover after connection loss.
///
/// These options determine a series of delays to coordinate
/// reconnection attempts. They may be open-ended or limited in time.
Expand Down

0 comments on commit 6b95b8b

Please sign in to comment.