@@ -89,10 +89,10 @@ class Stream : public std::enable_shared_from_this<Stream> {
8989 [[nodiscard]] const char * get_cname () const noexcept { return name_.c_str (); }
9090 // / @brief Helper function to print out the Engine::Type of the Stream.
9191 // / @return The corresponding C-string
92- [[nodiscard]] const char * get_engine_type_str () const ;
92+ [[nodiscard]] const char * get_engine_type_str () const noexcept ;
9393 // / @brief Helper function to print out the Transport::Method of the Stream.
9494 // / @return The corresponding C-string
95- [[nodiscard]] const char * get_transport_method_str () const ;
95+ [[nodiscard]] const char * get_transport_method_str () const noexcept ;
9696 // / @brief Helper function to know the access Mode of the Stream.
9797 // / @return The corresponding Stream::Mode
9898 [[nodiscard]] Mode get_access_mode () const noexcept { return access_mode_; }
@@ -113,10 +113,10 @@ class Stream : public std::enable_shared_from_this<Stream> {
113113 Stream& set_transport_method (const Transport::Method& transport_method);
114114 // / @brief Stream configuration function: specify that metadata must be exported
115115 // / @return The calling Stream (enable method chaining).
116- Stream& set_metadata_export ();
116+ Stream& set_metadata_export () noexcept ;
117117 // / @brief Stream configuration function: specify that metadata must not be exported
118118 // / @return The calling Stream (enable method chaining).
119- Stream& unset_metadata_export ();
119+ Stream& unset_metadata_export () noexcept ;
120120 // / @brief Get the name of the file in which the stream stores metadata
121121 // / @return The name of the file.
122122 [[nodiscard]] const std::string& get_metadata_file_name () const noexcept { return metadata_file_; }
@@ -131,10 +131,10 @@ class Stream : public std::enable_shared_from_this<Stream> {
131131
132132 // / @brief Helper function to obtain the number of actors connected to Stream in Mode::Publish.
133133 // / @return The number of publishers for that Stream.
134- [[nodiscard]] size_t get_num_publishers () const noexcept { return engine_->get_publishers ().count (); }
134+ [[nodiscard]] size_t get_num_publishers () const { return engine_->get_publishers ().count (); }
135135 // / @brief Helper function to obtain the number of actors connected to Stream in Mode::Subscribe.
136136 // / @return The number of subscribers for that Stream.
137- [[nodiscard]] size_t get_num_subscribers () const noexcept { return engine_->get_subscribers ().count (); }
137+ [[nodiscard]] size_t get_num_subscribers () const { return engine_->get_subscribers ().count (); }
138138
139139 /* ****** Variable Factory *******/
140140
0 commit comments