| 198 | } |
| 199 | |
| 200 | std::vector<DataProcessorService::FilterRecipe> DataProcessorService::recipes() const { |
| 201 | std::vector<FilterRecipe> out; |
| 202 | out.reserve(recipes_.size()); |
| 203 | for (const auto& [out_tid, recipe] : recipes_) { |
| 204 | (void)out_tid; |
| 205 | out.push_back(recipe); |
| 206 | } |
| 207 | return out; |
| 208 | } |
| 209 | |
| 210 | Status DataProcessorService::updateFilter(NodeId node_id, std::shared_ptr<proc::DataProcessor> processor) { |
| 211 | if (!processor) { |