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

Method type

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

Source from the content-addressed store, hash-verified

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

Callers 2

isCoroutineMethod · 0.45
_typeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected