本文整理汇总了TypeScript中rxjs/operators.debounce函数的典型用法代码示例。如果您正苦于以下问题:TypeScript debounce函数的具体用法?TypeScript debounce怎么用?TypeScript debounce使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了debounce函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: type
type('should support selectors of a different type', () => {
/* tslint:disable:no-unused-variable */
let o: Observable<number>;
let s: Observable<string>;
let r: Observable<number> = o.pipe(debounce((n) => s));
/* tslint:enable:no-unused-variable */
});
开发者ID:DallanQ,项目名称:rxjs,代码行数:7,代码来源:debounce-spec.ts
示例2: it
it('should raises error when promise rejects', (done: MochaDone) => {
const e1 = concat(
of(1),
timer(10).pipe(mapTo(2)),
timer(10).pipe(mapTo(3)),
timer(100).pipe(mapTo(4))
);
const expected = [1, 2];
const error = new Error('error');
e1.pipe(
debounce((x: number) => {
if (x === 3) {
return new Promise((resolve: any, reject: any) => { reject(error); });
} else {
return new Promise((resolve: any) => { resolve(42); });
}
})
).subscribe((x: number) => {
expect(x).to.equal(expected.shift()); },
(err: any) => {
expect(err).to.be.an('error', 'error');
expect(expected.length).to.equal(0);
done();
}, () => {
done(new Error('should not be called'));
});
});
开发者ID:DallanQ,项目名称:rxjs,代码行数:28,代码来源:debounce-spec.ts
示例3: filter
.subscribe(doc => {
if (!validationByDoc.has(doc.uri)) {
const uri = doc.uri;
if (isUriBlackListed(uri)) {
validationByDoc.set(doc.uri, validationRequestStream.pipe(
filter(doc => uri === doc.uri),
take(1),
tap(doc => log('Ignoring:', doc.uri)),
).subscribe()
);
} else {
validationByDoc.set(doc.uri, validationRequestStream.pipe(
filter(doc => uri === doc.uri),
tap(doc => log('Request Validate:', doc.uri)),
debounceTime(50),
tap(doc => log('Request Validate 2:', doc.uri)),
flatMap(async doc => ({ doc, settings: await getActiveSettings(doc) }) as DocSettingPair),
debounce(dsp => timer(dsp.settings.spellCheckDelayMs || defaultDebounce)
.pipe(filter(() => !isValidationBusy))
),
flatMap(validateTextDocument),
).subscribe(diag => connection.sendDiagnostics(diag))
);
}
}
});
开发者ID:Jason-Rev,项目名称:vscode-spell-checker,代码行数:26,代码来源:server.ts
示例4: asDiagram
asDiagram('debounce')('should debounce values by a specified cold Observable', () => {
const e1 = hot('-a--bc--d---|');
const e2 = cold('--| ');
const expected = '---a---c--d-|';
const result = e1.pipe(debounce(() => e2));
expectObservable(result).toBe(expected);
});
开发者ID:DallanQ,项目名称:rxjs,代码行数:9,代码来源:debounce-spec.ts
示例5: constructor
/**
*
* @param period milliseconds
*/
constructor(
period?: number, // milliseconds
) {
super(period);
this.subject = new Subject<T>();
this.subscription = this.subject.pipe(
debounce(() => interval(this.period)),
)
.subscribe((item: T) => super.next(item));
}
开发者ID:w11k,项目名称:calendar-for-trello,代码行数:15,代码来源:debounce-queue.ts
示例6: debounce2
debounce2() {
// emit value every 1 second, ex. 0...1...2
const interval$ = interval(1000);
// raise the debounce time by 200ms each second
const debouncedInterval = interval$.pipe(debounce(val => timer(val * 200)));
/*
After 5 seconds, debounce time will be greater than interval time,
all future values will be thrown away
output: 0...1...2...3...4......(debounce time over 1s, no values emitted)
*/
const subscribe = debouncedInterval.subscribe(val =>
console.log(`Example Two: ${val}`)
);
}
开发者ID:zwvista,项目名称:SampleMisc,代码行数:14,代码来源:filtering.service.ts
示例7: debounce1
debounce1() {
// emit four strings
const example = of('WAIT', 'ONE', 'SECOND', 'Last will display');
/*
Only emit values after a second has passed between the last emission,
throw away all other values
*/
const debouncedExample = example.pipe(debounce(() => timer(1000)));
/*
In this example, all values but the last will be omitted
output: 'Last will display'
*/
const subscribe = debouncedExample.subscribe(val => console.log(val));
}
开发者ID:zwvista,项目名称:SampleMisc,代码行数:14,代码来源:filtering.service.ts
示例8: higherOrder
export function debounce<T>(this: Observable<T>, durationSelector: (value: T) => SubscribableOrPromise<any>): Observable<T> {
return higherOrder(durationSelector)(this);
}
开发者ID:DallanQ,项目名称:rxjs,代码行数:3,代码来源:debounce.ts
注:本文中的rxjs/operators.debounce函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论