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


TypeScript operators.count函數代碼示例

本文整理匯總了TypeScript中rxjs/operators.count函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript count函數的具體用法?TypeScript count怎麽用?TypeScript count使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了count函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: scanDelete

export async function scanDelete(options: Options) {
  const { directory, regularExpressions, concurrency = 20 } = options;

  assertAbsolute(directory);

  // get an observable of absolute paths within a directory
  const getChildPath$ = (path: string) =>
    getReadDir$(path).pipe(
      mergeAll(),
      map((name: string) => join(path, name))
    );

  // get an observable of all paths to be deleted, by starting with the arg
  // and recursively iterating through all children, unless a child matches
  // one of the supplied regular expressions
  const getPathsToDelete$ = (path: string): Rx.Observable<string> => {
    if (regularExpressions.some(re => re.test(path))) {
      return Rx.of(path);
    }

    return getStat$(path).pipe(
      mergeMap(stat => (stat.isDirectory() ? getChildPath$(path) : Rx.EMPTY)),
      mergeMap(getPathsToDelete$)
    );
  };

  return await Rx.of(directory)
    .pipe(
      mergeMap(getPathsToDelete$),
      mergeMap(async path => await del(path), concurrency),
      count()
    )
    .toPromise();
}
開發者ID:austec-automation,項目名稱:kibana,代碼行數:34,代碼來源:scan_delete.ts

示例2: asDiagram

  asDiagram('count')('should count the values of an observable', () => {
    const source = hot('--a--b--c--|');
    const subs =       '^          !';
    const expected =   '-----------(x|)';

    expectObservable(source.pipe(count())).toBe(expected, {x: 3});
    expectSubscriptions(source.subscriptions).toBe(subs);
  });
開發者ID:DallanQ,項目名稱:rxjs,代碼行數:8,代碼來源:count-spec.ts

示例3: it

  it("handles both the legacy and current arguments for ofMessageType", () => {
    from(([
      { header: { msg_type: "stream" } },
      { header: { msg_type: "error" } },
      { header: { msg_type: "status" } },
      { header: { msg_type: "stream" } },
      { header: { msg_type: "status" } }
    ] as any[]) as JupyterMessage[])
      .pipe(
        ofMessageType(["stream", "status"]),
        tap(val => {
          expect(
            val.header.msg_type === "stream" || val.header.msg_type === "status"
          );
        }),
        map(entry => entry.header.msg_type),
        count()
      )
      .toPromise()
      .then(val => {
        expect(val).toEqual(4);
      });

    from(([
      { header: { msg_type: "stream" } },
      { header: { msg_type: "status" } },
      { header: { msg_type: "error" } },
      { header: { msg_type: "stream" } },
      { header: { msg_type: "status" } }
    ] as any[]) as JupyterMessage[])
      .pipe(
        // Note the lack of array brackets on the arguments
        ofMessageType("stream", "status"),
        tap(val => {
          expect(
            val.header.msg_type === "stream" || val.header.msg_type === "status"
          );
        }),
        map(entry => entry.header.msg_type),
        count()
      )
      .toPromise()
      .then(val => {
        expect(val).toEqual(4);
      });
  });
開發者ID:kelleyblackmore,項目名稱:nteract,代碼行數:46,代碼來源:messaging-spec.ts

示例4: it

  it('should be never when source doesn\'t complete', () => {
    const e1 = hot('--x--^--y--');
    const e1subs =      '^     ';
    const expected =    '------';

    expectObservable(e1.pipe(count())).toBe(expected);
    expectSubscriptions(e1.subscriptions).toBe(e1subs);
  });
開發者ID:DallanQ,項目名稱:rxjs,代碼行數:8,代碼來源:count-spec.ts


注:本文中的rxjs/operators.count函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。