requireSend method
notify the connection channel need to send data
Implementation
@override
void requireSend() {
if (!_sending) {
_sending = true;
DsTimer.callLater(_send);
}
}
notify the connection channel need to send data
@override
void requireSend() {
if (!_sending) {
_sending = true;
DsTimer.callLater(_send);
}
}