MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / ephemeralOutputTopics

Method ephemeralOutputTopics

pj_runtime/src/DataProcessorService.cpp:724–733  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

722}
723
724std::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
735std::vector<DataProcessorService::TransformRecipe> DataProcessorService::transformsDependingOn(
736 const std::vector<std::string>& removed_series) const {

Callers 2

catalogFingerprintMethod · 0.80
rebuildNowMethod · 0.80

Calls 3

insertMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected