[RxJS] Connection operator: multicast and connect
We have seen how Subjects are useful for sharing an execution of an RxJS observable to multiple observers. However, this technique requires some laborious setting up. In this lesson we will learn about the multicast() operator which helps solve the same problem with less code, and with a neater API.
Let's go back and remember why did we need subjects in the first place? Originally, we had one typical observable, but we wanted two observers A
and B
, to see the same execution of that observable.
Does that mean that every time that we want to have multiple observers we need to set up a subject
, and subscribe
to the observables, subscribe
to the subjects?
This system is not so ergonomic to set up. That's why there exists an operator or a method that simplifies all of this for us. That would be multicast
. multicast
is an operator on a normal observable. It takes here an argument, which is a subject
.
// var source = Rx.Observable // .interval(100) // .take(5); // var subject = new Rx.Subject(); // source.subscribe(subject); var connectableObservable = Rx.Observable .interval(100) .take(5) .multicast(new Rx.Subject()); connectableObservable.connect(); var observerA = { next: function (x) { console.log('A next ' + x); }, error: function (err) { console.log('A error ' + err); }, complete: function () { console.log('A done'); }, }; connectableObservable.subscribe(observerA); console.log('observerA subscribed'); var observerB = { next: function (x) { console.log('B next ' + x); }, error: function (err) { console.log('B error ' + err); }, complete: function () { console.log('B done'); }, }; setTimeout(function () { connectableObservable.subscribe(observerB); console.log('observerB subscribed'); }, 300);
Now when we connect
this observable, this connectableObservable
, it will use a ReplaySubject
to subscribe
to this observable. That means that when the late observer arrives here, it will see the last values replayed to it. If we run this B
arrives late, but B
sees the latest values, zero and one, for instance.
// var source = Rx.Observable // .interval(100) // .take(5); // var subject = new Rx.Subject(); // source.subscribe(subject); var connectableObservable = Rx.Observable .interval(100) .take(5) .multicast(new Rx.ReplaySubject(100)); connectableObservable.connect(); var observerA = { next: function (x) { console.log('A next ' + x); }, error: function (err) { console.log('A error ' + err); }, complete: function () { console.log('A done'); }, }; connectableObservable.subscribe(observerA); console.log('observerA subscribed'); var observerB = { next: function (x) { console.log('B next ' + x); }, error: function (err) { console.log('B error ' + err); }, complete: function () { console.log('B done'); }, }; setTimeout(function () { console.log('observerB subscribed'); connectableObservable.subscribe(observerB); }, 300);
/*"observerA subscribed" "A next 0" "A next 1" "A next 2" "observerB subscribed" "B next 0" "B next 1" "B next 2" "A next 3" "B next 3" "A next 4" "B next 4" "A done" "B done"*/
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具