(_err: Error, cb: Function)
| 53 | } |
| 54 | |
| 55 | public _destroy(_err: Error, cb: Function) { |
| 56 | this.cursor.close((err?: Error) => { |
| 57 | cb(err || _err) |
| 58 | }) |
| 59 | } |
| 60 | |
| 61 | // https://nodejs.org/api/stream.html#stream_readable_read_size_1 |
| 62 | public _read(size: number) { |