* Send value * @this {!FinalSender} * @param {!object} value Value to send * @returns {!number} Sent bytes
(value)
| 25106 | * @returns {!number} Sent bytes |
| 25107 | */ |
| 25108 | send (value) { |
| 25109 | let result = 0 |
| 25110 | result = this._protoSender.send(value) |
| 25111 | if (result > 0) { |
| 25112 | return result |
| 25113 | } |
| 25114 | return 0 |
| 25115 | } |
| 25116 | |
| 25117 | /** |
| 25118 | * Send message handler |