(self, stream_name: str)
| 208 | return subtasks |
| 209 | |
| 210 | def get_stream(self, stream_name: str) -> Stream: |
| 211 | stream = self._streams.get(stream_name) |
| 212 | if stream is None: |
| 213 | raise Exception(f'Unknown stream {stream_name}') |
| 214 | return stream |
| 215 | |
| 216 | def plugin_info(self) -> msg.PluginInfo: |
| 217 | subtask_metas = [ |