shutdown method

  1. @override
Future<bool> shutdown()
override

Shutdown the exporter.

This should cleanup any resources and perform final exports. Returns true if the shutdown was successful, false otherwise.

Implementation

@override
Future<bool> shutdown() async {
  _isShutdown = true;
  return true;
}