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

Function parseKind

pj_runtime/src/DataProcessorsRuntimeHost.cpp:27–29  ·  view source on GitHub ↗

Accept the `kind` discriminator; returns false on an unknown kind. Only "transform" is implemented here ("markers" is routed by a different host); the host rejects anything else (e.g. a stale plugin still sending a removed kind).

Source from the content-addressed store, hash-verified

25/// "transform" is implemented here ("markers" is routed by a different host); the
26/// host rejects anything else (e.g. a stale plugin still sending a removed kind).
27bool parseKind(std::string_view kind) {
28 return kind == "transform";
29}
30} // namespace
31
32DataProcessorsRuntimeHost::DataProcessorsRuntimeHost(DataProcessorService& service, std::string plugin_id)

Callers 2

onCreateMethod · 0.85
onValidateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected