可读流中的 ‘close’ 事件在流及其任何隐藏资源关闭时发出。此事件意味着不能发出进一步的事件,也不能进行进一步的计算。此外,如果使用emitClose 选项创建可读流,则它始终可以发出‘close’ 事件。
用法:
Event:'close '
下面的例子说明了 Node.js 中关闭事件的使用:
范例1:
// Node.js program to demonstrate the
// readable close event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Calling close method
readable.close();
// Handling close event
readable.on("close", () => {
console.log("Stream ended");
});
console.log("Done...");
输出:
Done... Stream ended
范例2:
// Node.js program to demonstrate the
// readable close event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Handling close event
readable.on("close", () => {
console.log("Stream ended");
});
console.log("Done...");
输出:
Done...
在这里,不调用 close 方法,因此不发出 close 事件。
参考: https://nodejs.org/api/stream.html#stream_event_close_1。
相关用法
- Node.js Readable Stream readable事件用法及代码示例
- node.js Stream readable.readable用法及代码示例
- Node.js Readable Stream error事件用法及代码示例
- Node.js Readable Stream end事件用法及代码示例
- Node.js Readable Stream data事件用法及代码示例
- Node.js Readable Stream resume事件用法及代码示例
- Node.js Readable Stream pause事件用法及代码示例
- jQuery UI dialog close(event, ui)用法及代码示例
- node.js Stream readable.pause()用法及代码示例
- node.js Stream readable.isPaused()用法及代码示例
- node.js Stream readable.destroyed用法及代码示例
- node.js Stream readable.destroy()用法及代码示例
- node.js Stream readable.read()用法及代码示例
- node.js Stream readable.readableEncoding用法及代码示例
- node.js Stream readable.readableEnded用法及代码示例
- node.js Stream readable.readableFlowing用法及代码示例
- node.js Stream readable.readableHighWaterMark用法及代码示例
- node.js Stream readable.readableLength用法及代码示例
- node.js Stream readable.readableObjectMode用法及代码示例
- node.js Stream readable.pipe()用法及代码示例
- node.js Stream readable.unpipe()用法及代码示例
- node.js Stream readable.setEncoding()用法及代码示例
- node.js Stream readable.resume()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Readable Stream close Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。