close method

void close()

Implementation

void close() {
  if (!_closed) {
    _closed = true;
    unsubscribeAll();
    _stc.close();
  }
}