new GridFSBucketReadStream(chunks, files, readPreference, filter, options){GridFSBucketReadStream}
A readable stream that enables you to read buffers from GridFS.
Do not instantiate this class directly. Use openDownloadStream()
instead.
Name | Type | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
chunks |
Collection |
Handle for chunks collection |
|||||||||||||||
files |
Collection |
Handle for files collection |
|||||||||||||||
readPreference |
Object |
The read preference to use |
|||||||||||||||
filter |
Object |
The query to use to find the file document |
|||||||||||||||
options |
Object |
optional
Optional settings.
|
Fires:
Returns:
GridFSBucketReadStream instance.Methods
-
_read()
-
Reads from the cursor and pushes to the stream.
-
abort(callback)
-
Marks this stream as aborted (will never push another
data
event)
and kills the underlying cursor. Will emit the 'end' event, and then
the 'close' event once the cursor is successfully killed.Name Type Description callback
GridFSBucket~errorCallback optional called when the cursor is successfully closed or an error occurred.
Fires:
- GridFSBucketWriteStream#event:close
- GridFSBucketWriteStream#event:end
-
Sets the 0-based offset in bytes to start streaming from. Throws
an error if this stream has entered flowing mode
(e.g. if you've already calledon('data')
)Name Type Description end
Number Offset in bytes to stop reading at
-
start(start){GridFSBucketReadStream}
-
Sets the 0-based offset in bytes to start streaming from. Throws
an error if this stream has entered flowing mode
(e.g. if you've already calledon('data')
)Name Type Description start
Number Offset in bytes to start reading at
Events
-
Fired when the stream is exhausted and the underlying cursor is killed
Type:
- object
-
Emitted when a chunk of data is available to be consumed.
Type:
- object
-
Fired when the stream is exhausted (no more data events).
Type:
- object
-
An error occurred
Type:
- Error
-
Fires when the stream loaded the file document corresponding to the
provided id.Type:
- object