重载生命周期回调函数
| 28 | |
| 29 | // 重载生命周期回调函数 |
| 30 | void onOpen() override |
| 31 | { |
| 32 | printf("[%s] on open\n", getAppInfo().name.c_str()); |
| 33 | } |
| 34 | void onRunning() override |
| 35 | { |
| 36 | printf("[%s] on running\n", getAppInfo().name.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected