* Reads from the cursor and pushes to the stream. * Private Impl, do not call directly * @internal
()
| 165 | * @internal |
| 166 | */ |
| 167 | override _read(): void { |
| 168 | if (this.destroyed) return; |
| 169 | waitForFile(this, () => doRead(this)); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Sets the 0-based offset in bytes to start streaming from. Throws |
nothing calls this directly
no test coverage detected