| 373 | int Handle::_id() const { return mImpl ? mImpl->id() : 0; } |
| 374 | bool Handle::_is_canceled() const { return mImpl ? mImpl->is_canceled() : true; } |
| 375 | bool Handle::_ready_to_run(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run(current_time) : false; } |
| 376 | bool Handle::_ready_to_run_frame_task(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run_frame_task(current_time) : false; } |
| 377 | void Handle::_set_last_run_time(fl::u32 time) { if (mImpl) mImpl->set_last_run_time(time); } |
| 378 | bool Handle::_has_then() const { return mImpl ? mImpl->has_then() : false; } |