當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript operators.debounce函數代碼示例

本文整理匯總了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;未經允許,請勿轉載。