FastLED 3.9.15
Loading...
Searching...
No Matches

◆ has_active_tasks()

bool fl::task::Executor::has_active_tasks ( ) const

Check if there are any active tasks.

Definition at line 54 of file executor.cpp.hpp.

54 {
55 for (const auto* r : mRunners) {
56 if (r && r->has_active_tasks()) {
57 return true;
58 }
59 }
60 return false;
61}
fl::vector< Runner * > mRunners
Definition executor.h:123

References mRunners.

Referenced by fl::task::has_tasks().

+ Here is the caller graph for this function: