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).
| 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). |
| 27 | bool parseKind(std::string_view kind) { |
| 28 | return kind == "transform"; |
| 29 | } |
| 30 | } // namespace |
| 31 | |
| 32 | DataProcessorsRuntimeHost::DataProcessorsRuntimeHost(DataProcessorService& service, std::string plugin_id) |
no outgoing calls
no test coverage detected