decrementConnectionBytesSent method
Called by UDXStream when data is acknowledged.
Implementation
void decrementConnectionBytesSent(int bytes) {
_connectionBytesSent -= bytes;
if (_connectionBytesSent < 0) {
_connectionBytesSent = 0;
}
}
Called by UDXStream when data is acknowledged.
void decrementConnectionBytesSent(int bytes) {
_connectionBytesSent -= bytes;
if (_connectionBytesSent < 0) {
_connectionBytesSent = 0;
}
}