本文整理汇总了TypeScript中rxjs/operators.observeOn函数的典型用法代码示例。如果您正苦于以下问题:TypeScript observeOn函数的具体用法?TypeScript observeOn怎么用?TypeScript observeOn使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了observeOn函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: asDiagram
asDiagram('observeOn(scheduler)')('should observe on specified scheduler', () => {
const e1 = hot('--a--b--|');
const expected = '--a--b--|';
const sub = '^ !';
expectObservable(e1.pipe(observeOn(rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(sub);
});
示例2: it
it('should observe after specified delay', () => {
const e1 = hot('--a--b--| ');
const expected = '-----a--b--|';
const sub = '^ ! ';
expectObservable(e1.pipe(observeOn(rxTestScheduler, 30))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(sub);
});
示例3: constructor
constructor(initialState: T, action$: Dispatcher, reducer$: Reducer) {
super(initialState);
action$
.pipe(
observeOn(queue),
withLatestFrom(reducer$),
scan<[Action, ActionReducer<any>], T>(
(state, [action, reducer]) => reducer(state, action),
initialState,
),
)
.subscribe(value => this.next(value));
}
示例4: it
it('should get new iterator for each subscription', () => {
const expected = [
Notification.createNext(10),
Notification.createNext(20),
Notification.createComplete()
];
const e1 = fromIterable<number>(new Int32Array([10, 20]), undefined).pipe(observeOn(rxTestScheduler));
let v1, v2: Array<Notification<any>>;
e1.pipe(materialize()).toArray().subscribe((x) => v1 = x);
e1.pipe(materialize()).toArray().subscribe((x) => v2 = x);
rxTestScheduler.flush();
expect(v1).to.deep.equal(expected);
expect(v2).to.deep.equal(expected);
});
示例5: values
return (actor$: Observable<Actor>) => {
return actor$.pipe(
rxFilter((actor) => RequestActor.isPreRequestActor(actor)),
rxObserveOn(asyncScheduler),
rxBufferTime(100),
rxFilter((actors) => actors.length > 0),
rxMergeMap((actors) => {
const nextActors = {} as Dictionary<Actor>;
actors.forEach((actor) => {
nextActors[actor.type + JSON.stringify(actor.arg)] = actor;
});
return values(nextActors);
}),
);
};