(sharedBuffer)
| 290 | */ |
| 291 | class RingBufferReader { |
| 292 | constructor(sharedBuffer) { |
| 293 | this.buffer = sharedBuffer; |
| 294 | this.int32 = new Int32Array(sharedBuffer); |
| 295 | this.uint8 = new Uint8Array(sharedBuffer); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Check if there's data available in the network ring buffer |
nothing calls this directly
no outgoing calls
no test coverage detected