Adds a buffer to the internal buffer pool list
(buffer: Uint8Array)
| 807 | |
| 808 | /** Adds a buffer to the internal buffer pool list */ |
| 809 | append(buffer: Uint8Array): void { |
| 810 | this.buffers.push(buffer); |
| 811 | this.totalByteLength += buffer.length; |
| 812 | } |
| 813 | |
| 814 | /** |
| 815 | * If BufferPool contains 4 bytes or more construct an int32 from the leading bytes, |