পাঠযোগ্য স্ট্রিম কীভাবে বন্ধ করবেন closeNode.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.");
}
});
এটি এর চেয়ে ভাল হবে:
input.on('data', function(data) {
if (isEnded) { return; }
if (gotFirstLine) {
isEnded = true;
console.log("Closed.");
}
});
তবে এটি পড়ার প্রক্রিয়াটি থামবে না ...
fs
মডিউলটির প্রসঙ্গে ।close
মধ্যে নেইStream.Readable
।