We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c010851 commit 14474ebCopy full SHA for 14474eb
data_tamer_cpp/include/data_tamer/channel.hpp
@@ -153,6 +153,11 @@ class LogChannel : public std::enable_shared_from_this<LogChannel>
153
*/
154
void addDataSink(std::shared_ptr<DataSinkBase> sink);
155
156
+ /**
157
+ * @brief removeDataSink remove a sink, i.e. a class collecting our snapshots.
158
+ */
159
+ void removeDataSink(std::shared_ptr<DataSinkBase> sink);
160
+
161
/**
162
* @brief takeSnapshot copies the current value of all your registered values
163
* and send an instance of Snapshot to all your Sinks.
0 commit comments