| 91 | } |
| 92 | |
| 93 | bool CompositeStreamPlugin::isDataModelStreaming() const { |
| 94 | for (const auto* plugin : _plugins) { |
| 95 | if (plugin->isDataModelStreaming()) { |
| 96 | return true; |
| 97 | } |
| 98 | } |
| 99 | return false; |
| 100 | } |
| 101 | |
| 102 | void CompositeStreamPlugin::reset() { |
| 103 | for (auto* plugin : _plugins) { |
no outgoing calls
no test coverage detected