| 11 | from MyParams.MyParam import MyParam |
| 12 | |
| 13 | class MyMonitorGDaemon(GDaemon): |
| 14 | def daemonTask(self, _): |
| 15 | param: MyParam = self.getGParamWithNoEmpty('param1') |
| 16 | print("----> [MyMonitorDaemon] monitor span is [{0}] ms, count is [{1}]".format( |
| 17 | self.getInterval(), param.count)) |