| 289 | * Ring buffer reader (used by worker thread) |
| 290 | */ |
| 291 | class RingBufferReader { |
| 292 | constructor(sharedBuffer) { |
| 293 | this.buffer = sharedBuffer; |
| 294 | this.int32 = new Int32Array(sharedBuffer); |
nothing calls this directly
no outgoing calls
no test coverage detected