(command: RealtimeCommand)
| 247 | // Command buffer |
| 248 | |
| 249 | pushCommand(command: RealtimeCommand) { |
| 250 | this.commandBuffer.push(command); |
| 251 | |
| 252 | if (this.commandBuffer.length === 1) { |
| 253 | setTimeout(this.flushCommandBuffer); |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | _resubscribe< |
| 258 | DataPrefix_ extends DataPrefix, |
no outgoing calls
no test coverage detected