| 205 | ~EchoWorker() {} |
| 206 | |
| 207 | void Execute() override { |
| 208 | // Simulate cpu heavy task |
| 209 | std::this_thread::sleep_for(std::chrono::milliseconds(30)); |
| 210 | } |
| 211 | |
| 212 | void OnOK() override { |
| 213 | HandleScope scope(Env()); |
nothing calls this directly
no outgoing calls
no test coverage detected