activeCount property
int
get
activeCount
Number of active workers in the group (not disposed, not paused)
Implementation
int get activeCount => _handles.where((h) => h.isActive).length;
Number of active workers in the group (not disposed, not paused)
int get activeCount => _handles.where((h) => h.isActive).length;