| 367 | } |
| 368 | |
| 369 | NODEASYNC_IDLE_WORK_CB(onNextTick) { |
| 370 | std::function<void()>* func = |
| 371 | static_cast<std::function<void()>*>(handle->data); |
| 372 | (*func)(); |
| 373 | delete func; |
| 374 | uv_idle_stop(handle); |
| 375 | delete handle; |
| 376 | } |
| 377 | }; |
| 378 | } // namespace NodeUtils |
nothing calls this directly
no outgoing calls
no test coverage detected