| 310 | void Handle::set_last_run_time(fl::u32 time) { if (mImpl) mImpl->set_last_run_time(time); } |
| 311 | bool Handle::ready_to_run(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run(current_time) : false; } |
| 312 | bool Handle::is_valid() const { return mImpl != nullptr; } |
| 313 | bool Handle::isCoroutine() const { return mImpl && mImpl->type() == TaskType::kCoroutine; } |
| 314 | |
| 315 | // Coroutine control |
no outgoing calls
no test coverage detected