dispose method

  1. @override
void dispose()
override

Called when this StudyRuntime is disposed. This entails stopping and disposing all data sampling and storage.

Implementation

@override
void dispose() {
  info('$runtimeType - Disposing deployment...');
  executor?.stop();
  dataManager?.close().then((_) => super.dispose());
}