| 308 | void Handle::set_interval_ms(int interval_ms) { if (mImpl) mImpl->set_interval_ms(interval_ms); } |
| 309 | fl::u32 Handle::last_run_time() const { return mImpl ? mImpl->last_run_time() : 0; } |
| 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; } |
no outgoing calls
no test coverage detected