- share
- 签名:
share(): Observable
- 签名:
- 在多个订阅者间共享源 observable 。
- 示例
- 示例 1: 多个订阅者共享源 observable
- 示例
- 相关食谱
- 其他资源
- 其他资源
share
签名: share(): Observable
在多个订阅者间共享源 observable 。
share 就像是使用了 Subject 和 refCount 的 multicast!
示例
示例 1: 多个订阅者共享源 observable
( jsBin |
jsFiddle )
import { timer } from 'rxjs/observable/timer';
import { tap, mapTo, share } 'rxjs/operators';
// 1秒后发出值
const source = timer(1000);
// 输出副作用,然后发出结果
const example = source.pipe(
tap(() => console.log('***SIDE EFFECT***')),
mapTo('***RESULT***')
);
/*
***不共享的话,副作用会执行两次***
输出:
"***SIDE EFFECT***"
"***RESULT***"
"***SIDE EFFECT***"
"***RESULT***"
*/
const subscribe = example.subscribe(val => console.log(val));
const subscribeTwo = example.subscribe(val => console.log(val));
// 在多个订阅者间共享 observable
const sharedExample = example.pipe(share());
/*
***共享的话,副作用只执行一次***
输出:
"***SIDE EFFECT***"
"***RESULT***"
"***RESULT***"
*/
const subscribeThree = sharedExample.subscribe(val => console.log(val));
const subscribeFour = sharedExample.subscribe(val => console.log(val));
相关食谱
- 进度条
- 游戏循环
其他资源
其他资源
- share - 官方文档
- 使用 share 共享流 - John Linquist
源码: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/share.ts