我已经删除了样板以达到重点
// a.js
// My observables from stream and event
this.a = Rx.Node.fromStream(this.aStream());
this.itemSource = Rx.Observable.fromEvent(ee, 'addItem');
// Zip 'em
this.itemcombo = Rx.Observable.zip(this.a, this.itemSource, function (s1, s2) {
return {item: s2, a: s1.toString()};
});
// Streams the lowercase alphabet
rb.prototype.aStream = function aStream() {
var rs = Readable();
var c = 97;
rs._read = function () {
rs.push(String.fromCharCode(c++));
console.log('Hit!');
if (c > 'z'.charCodeAt(0)) {
rs.push(null);
}
};
return rs;
};
// b.js
(需要上面导出的模块)
rb.enqueue('a'); // The method simply does an ee.emit('addItem', ...) in the module to trigger the itemSource observable
我期望看到的:
{item: 'a', a: 'a'}
打印在控制台中
发生了什么:
Hit!
之前打印了 24 次{item: 'a', a: 'a'}
。这意味着zip
从 中获取所有值aStream
,缓冲它们,然后做它应该做的事情。
我如何获得相同的功能zip
提供但懒惰?我的目标是使用无限流/可观察的并用有限(异步)流压缩它。
编辑
通过 runnable 查看/编辑它:RX Zip test Edit 2 Code updated based on answer -> no output now。