(buffer: Buffer)
| 2360 | } |
| 2361 | // Synchronously add buffer to queue |
| 2362 | addBuffer(buffer: Buffer): void { |
| 2363 | this.writeQueue.push(buffer); |
| 2364 | this.queuedSize += buffer.length; |
| 2365 | } |
| 2366 | // Synchronously add integer as buffer |
| 2367 | addInt32(value: number): void { |
| 2368 | reusableBuffers.i32.writeInt32LE(value, 0); |
no outgoing calls
no test coverage detected