Source
void addToSendList(Map m) {
_toSendList.add(m);
if (!_pendingSend) {
if (_conn != null) {
_conn.sendWhenReady(this);
}
_pendingSend = true;
}
}
void addToSendList(Map m) {
_toSendList.add(m);
if (!_pendingSend) {
if (_conn != null) {
_conn.sendWhenReady(this);
}
_pendingSend = true;
}
}