[RxJS] ReplaySubject

本文介绍了ReplaySubject在RxJS中的作用及其与普通Subject的区别。ReplaySubject能够缓存其值并重新发送给新订阅者,即使序列未完成也能正常工作。通过示例对比了ReplaySubject与普通Subject的行为差异。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A ReplaySubject caches its values and re-emits them to any Observer that subscrubes late to it. Unlike with AsyncSubject, the sequence doesn't need to be completed for this to happen.

 

The normal subject won't emit the value before subscribe.

var subject = new Rx.Subject();

subject.onNext(1);

subject.subscribe(
  (x)=>{
    console.log("Receive the value: " + x);
  }
)

subject.onNext(2);
subject.onNext(3);

/*
"Receive the value: 2"
"Receive the value: 3"
*/

 

The ReplaySubject will cache the values:

var subject = new Rx.ReplaySubject();

subject.onNext(1);

subject.subscribe(
  (x)=>{
    console.log("Receive the value: " + x);
  }
)

subject.onNext(2);
subject.onNext(3);

/*
"Receive the value: 1"
"Receive the value: 2"
"Receive the value: 3"
*/

 

转载于:https://www.cnblogs.com/Answer1215/p/5784861.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值