本文整理汇总了TypeScript中rxjs.EMPTY类的典型用法代码示例。如果您正苦于以下问题:TypeScript EMPTY类的具体用法?TypeScript EMPTY怎么用?TypeScript EMPTY使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了EMPTY类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: empty1
empty1() {
// output: 'Complete!'
const subscribe = EMPTY.subscribe({
next: () => console.log('Next'),
complete: () => console.log('Complete!')
});
}
示例2: it
it('should throw EmptyError if empty', () => {
let thrown: any;
EMPTY.pipe(
throwIfEmpty(),
)
.subscribe({
error(err) {
thrown = err;
}
});
expect(thrown).to.be.instanceof(EmptyError);
});
示例3: defaultIfEmpty2
defaultIfEmpty2() {
// emit 'Observable.empty()!' when empty, else any values from source
const example = EMPTY.pipe(defaultIfEmpty('Observable.empty()!'));
// output: 'Observable.empty()!'
const subscribe = example.subscribe(val => console.log(val));
}
示例4: it
it('should convert an empty Observable to a promise of undefined', (done: MochaDone) => {
EMPTY.toPromise(Promise).then((x) => {
expect(x).to.be.undefined;
done();
});
});