* Send value * @this {!FinalClient} * @param {!object} value Value to send * @returns {!number} Sent bytes
(value)
| 25285 | * @returns {!number} Sent bytes |
| 25286 | */ |
| 25287 | send (value) { |
| 25288 | let result = 0 |
| 25289 | result = this._protoClient.send(value) |
| 25290 | if (result > 0) { |
| 25291 | return result |
| 25292 | } |
| 25293 | return 0 |
| 25294 | } |
| 25295 | |
| 25296 | /** |
| 25297 | * Send message handler |