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

◆ has_active_tasks()

bool fl::AsyncManager::has_active_tasks ( ) const

Check if there are any active async tasks.

Definition at line 42 of file async.cpp.

42 {
43 for (const auto* runner : mRunners) {
44 if (runner && runner->has_active_tasks()) {
45 return true;
46 }
47 }
48 return false;
49}
fl::vector< async_runner * > mRunners
Definition async.h:99

References mRunners.

Referenced by fl::async_has_tasks().

+ Here is the caller graph for this function: