stop method

  1. @nonVirtual
void stop()

Stop sampling the measures using this device.

This entails that all measures in the study protocol using this device's type is stopped.

Implementation

@nonVirtual
void stop() {
  for (var executor in executors) {
    executor.stop();
  }
}