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

Method _set_id

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

Internal methods for Scheduler (friend access only)

Source from the content-addressed store, hash-verified

370
371// Internal methods for Scheduler (friend access only)
372void Handle::_set_id(int id) { if (mImpl) mImpl->set_id(id); }
373int Handle::_id() const { return mImpl ? mImpl->id() : 0; }
374bool Handle::_is_canceled() const { return mImpl ? mImpl->is_canceled() : true; }
375bool Handle::_ready_to_run(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run(current_time) : false; }

Callers 1

add_taskMethod · 0.80

Calls 1

set_idMethod · 0.45

Tested by

no test coverage detected