* Send value * @this {!Client} * @param {!object} value Value to send * @returns {!number} Sent bytes
(value)
| 24873 | * @returns {!number} Sent bytes |
| 24874 | */ |
| 24875 | send (value) { |
| 24876 | let result = 0 |
| 24877 | result = this._protoClient.send(value) |
| 24878 | if (result > 0) { |
| 24879 | return result |
| 24880 | } |
| 24881 | return 0 |
| 24882 | } |
| 24883 | |
| 24884 | /** |
| 24885 | * Send message handler |