addExecutor method

void addExecutor(
  1. Executor executor
)

Add the executor to the list of executors and forwards its measurements to this aggregate executor's stream of measurements.

Implementation

void addExecutor(Executor<dynamic> executor) {
  _executors.add(executor);
  _group.add(executor.measurements);
}