pause method

  1. @nonVirtual
void pause()

Pause sampling of the measures using this device.

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

Implementation

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