(self, key)
| 79 | self.cbs = cbs |
| 80 | # 获取前端配置输入参数 |
| 81 | def get_parameter(self, key): |
| 82 | v = _InitHelper.FUNC_PARAMETER(self.cbs[1])( |
| 83 | self.data, _pystr2cstr(key)) |
| 84 | return _cstr2pystr(v) |
| 85 | # 订阅tcp通信方式的topic |
| 86 | def subscribe(self, topic): |
| 87 | _InitHelper.FUNC_SUBSCRIBE(self.cbs[2])(self.data, _pystr2cstr(topic)) |
no test coverage detected