stop method

  1. @override
void stop()
override

Stops the reporter.

Implementation

@override
void stop() {
  try {
    super.stop();
  } finally {
    try {
      _graphite.close();
    } on IOException catch (e) {
      _log.fine("Error disconnecting from Graphite", e);
    }
  }
}