Wie schließe ich einen lesbaren Stream in Node.js?
var input = fs.createReadStream('lines.txt');
input.on('data', function(data) {
// after closing the stream, this will not
// be called again
if (gotFirstLine) {
// close this stream and continue the
// instructions from this if
console.log("Closed.");
}
});
Das wäre besser als:
input.on('data', function(data) {
if (isEnded) { return; }
if (gotFirstLine) {
isEnded = true;
console.log("Closed.");
}
});
Dies würde den Lesevorgang jedoch nicht stoppen ...
stream.destroy()
readable.push(null) && readable.destroy();
fs
Moduls.close
existiert nicht inStream.Readable
.