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

Method _set_last_run_time

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

Source from the content-addressed store, hash-verified

375bool Handle::_ready_to_run(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run(current_time) : false; }
376bool Handle::_ready_to_run_frame_task(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run_frame_task(current_time) : false; }
377void Handle::_set_last_run_time(fl::u32 time) { if (mImpl) mImpl->set_last_run_time(time); }
378bool Handle::_has_then() const { return mImpl ? mImpl->has_then() : false; }
379void Handle::_execute_then() { if (mImpl) mImpl->execute_then(); }
380void Handle::_execute_catch(const Error& error) { if (mImpl) mImpl->execute_catch(error); }

Callers 2

updateMethod · 0.80
update_tasks_of_typeMethod · 0.80

Calls 1

set_last_run_timeMethod · 0.45

Tested by

no test coverage detected