debugClose method

  1. @protected
void debugClose()

Closes all notification dispatchers - debugging only.

Implementation

@protected
void debugClose() {
  for (final WebsocketNotifier notifier in _notifiers.values) {
    notifier.close();
  }
}