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

Method set_last_run_time

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

Source from the content-addressed store, hash-verified

308void Handle::set_interval_ms(int interval_ms) { if (mImpl) mImpl->set_interval_ms(interval_ms); }
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; }

Callers 2

_set_last_run_timeMethod · 0.45
FL_TEST_FILEFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected