requireSend method

  1. @override
void requireSend()
override

notify the connection channel need to send data

Implementation

@override
void requireSend() {
  if (!_sending) {
    _sending = true;
    DsTimer.callLater(_send);
  }
}