| 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; } |
| 379 | void Handle::_execute_then() { if (mImpl) mImpl->execute_then(); } |
| 380 | void Handle::_execute_catch(const Error& error) { if (mImpl) mImpl->execute_catch(error); } |
| 381 | TaskType Handle::_type() const { return mImpl ? mImpl->type() : TaskType::kEveryMs; } |
| 382 | string Handle::_trace_label() const { return mImpl ? mImpl->trace_label() : ""; } |
no test coverage detected