我正在通过猫鼬向我的数据库打开一个流,并且想知道当它发出错误事件时流的状态是什么?这是否意味着正在流式传输的单个文档有错误并且流将继续传输数据?或者这是否意味着整个流出现错误并且流现在已损坏/关闭?
这是来自 Mongoose 文档的示例代码:
var stream = Model.find().stream();
stream.on('data', function (doc) {
// do something with the mongoose document
}).on('error', function (err) {
// What state is the stream here?????
}).on('close', function () {
// the stream is closed
});