MCPcopy Create free account
hub / github.com/FastLED/FastLED / ready_to_run

Method ready_to_run

src/fl/task/task.cpp.hpp:311–311  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

309fl::u32 Handle::last_run_time() const { return mImpl ? mImpl->last_run_time() : 0; }
310void Handle::set_last_run_time(fl::u32 time) { if (mImpl) mImpl->set_last_run_time(time); }
311bool Handle::ready_to_run(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run(current_time) : false; }
312bool Handle::is_valid() const { return mImpl != nullptr; }
313bool Handle::isCoroutine() const { return mImpl && mImpl->type() == TaskType::kCoroutine; }
314

Callers 1

_ready_to_runMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected