RxJS:Multicasting运算符share

它是multicast()运算符的别名,唯一的区别是您不必手动调用connect()方法即可启动订阅。

语法

share()

import { interval} from 'rxjs';
import { take, share} from 'rxjs/operators';

let observer = interval(1000).pipe(take(3), share());
const subscribe_one = observer.subscribe(
   x => console.log("Value from Sub1 = "+x)
);
const subscribe_two = observer.subscribe(
   x => console.log("Value from Sub2 = "+x)
);
setTimeout(() => {
   const subscribe_three = observer.subscribe(
      x => console.log("Value from Sub3 = "+x)
   );
}, 2000);

输出

RxJS:Multicasting运算符share

作者:terry,如若转载,请注明出处:https://www.web176.com/rxjs/1947.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2021年2月9日 下午12:51
下一篇 2021年2月9日 下午12:57

相关推荐

发表回复

登录后才能评论