Move to kernel style SPDX license identifiers
[babeltrace.git] / tests / data / cli / params / bt_plugin_params.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # Copyright (C) 2019 EfficiOS Inc.
4 #
5
6 import bt2
7 from cli_params_to_string import to_string
8
9
10 @bt2.plugin_component_class
11 class SinkThatPrintsParams(bt2._UserSinkComponent):
12 def __init__(self, config, params, obj):
13 self._add_input_port('in')
14 print(to_string(params))
15
16 def _user_consume(self):
17 raise bt2.Stop
18
19
20 bt2.register_plugin(__name__, "params")
This page took 0.02891 seconds and 4 git commands to generate.