| 722 | } |
| 723 | |
| 724 | std::unordered_set<TopicId> DataProcessorService::ephemeralOutputTopics() const { |
| 725 | std::unordered_set<TopicId> out; |
| 726 | for (const auto& [key, recipe] : transform_recipes_) { |
| 727 | (void)key; |
| 728 | if (recipe.ephemeral) { |
| 729 | out.insert(recipe.output_topic_ids.begin(), recipe.output_topic_ids.end()); |
| 730 | } |
| 731 | } |
| 732 | return out; |
| 733 | } |
| 734 | |
| 735 | std::vector<DataProcessorService::TransformRecipe> DataProcessorService::transformsDependingOn( |
| 736 | const std::vector<std::string>& removed_series) const { |
no test coverage detected