1 Star 0 Fork 0

陈迅/node-study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
19-stream-duplex.js 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈迅 提交于 2022-04-14 22:23 . feat: 添加双工流
let { Duplex } = require('stream')
// 该流可读可写;相互独立
class MyDuplex extends Duplex {
constructor(source) {
super()
this.source = source
}
_read() {
let data = this.source.shift() || null
this.push(data)
}
_write(chunk, en, done) {
process.stdout.write(chunk.toString())
process.nextTick(done)
}
}
let source = ['a', 'b', 'c']
let myDuplex = new MyDuplex(source)
myDuplex.on('data', (chunk) => {
console.log(chunk.toString());
})
myDuplex.write('写入的数据', () => {
console.log(111);
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenxun98/node-study.git
git@gitee.com:chenxun98/node-study.git
chenxun98
node-study
node-study
master

搜索帮助