probes property

List<Probe> probes

Returns a list of the running probes in this TriggerExecutor. This is a combination of the running probes in all task executors.

Implementation

List<Probe> get probes {
  List<Probe> probes = [];
  for (var executor in executors) {
    if (executor is TaskExecutor) {
      probes.addAll(executor.probes);
    }
  }
  return probes;
}