| 304 | bool Handle::has_catch() const { return mImpl ? mImpl->has_catch() : false; } |
| 305 | string Handle::trace_label() const { return mImpl ? mImpl->trace_label() : ""; } |
| 306 | TaskType Handle::type() const { return mImpl ? mImpl->type() : TaskType::kEveryMs; } |
| 307 | int Handle::interval_ms() const { return mImpl ? mImpl->interval_ms() : 0; } |
| 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; } |
no outgoing calls
no test coverage detected