当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript async-done.default函数代码示例

本文整理汇总了TypeScript中async-done.default函数的典型用法代码示例。如果您正苦于以下问题:TypeScript default函数的具体用法?TypeScript default怎么用?TypeScript default使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了default函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: success

function success(): Observable<undefined> {
  return Observable.empty();
}

function successValue(): Observable<number> {
  return Observable.of(42);
}

function failure(): Observable<number> {
  return Observable.throw(new Error("Observable error"));
}

// `success` callback
asyncDone(success, function (err: Error | null): void {
  console.log("Done");
});

// The following code fails to compile as expected (`undefined` is not assignable to `number`):
// asyncDone(success, function (err: Error | null, result: number): void {
//   console.log("Done");
// });

// `successValue` and stricter callback
asyncDone(successValue, function (err: Error | null, result?: number): void {
  console.log("Done");
});

// `successValue` and unsound callback
asyncDone(successValue, function (err: Error | null, result: number): void {
  console.log("Done");
开发者ID:gulpjs,项目名称:async-done,代码行数:30,代码来源:observables.ts

示例2: streamSuccess

import asyncDone from "async-done";
import { Readable, Stream } from "stream";

function streamSuccess(): Stream {
  return new Stream();
}

function streamFail(): Stream {
  return new Stream();
}

asyncDone(streamSuccess, function (err: Error | null): void {
  console.log("Done");
});

asyncDone(streamFail, function (err: Error | null): void {
  console.log("Done");
});
开发者ID:gulpjs,项目名称:async-done,代码行数:18,代码来源:streams.ts

示例3: success

import asyncDone from "async-done";
import cp from "child_process";


function success(): cp.ChildProcess {
  return cp.exec("echo hello world");
}

function failure(): cp.ChildProcess {
  return cp.exec("foo-bar-baz hello world");
}

asyncDone(success, function (err: Error | null): void {
  console.log("Done");
});

asyncDone(failure, function (err: Error | null): void {
  console.log("Done");
});
开发者ID:gulpjs,项目名称:async-done,代码行数:19,代码来源:child_processes.ts

示例4: setTimeout

import asyncDone, {AsyncTask, VoidCallback} from "async-done";

// Do not error if the return value is not `void`.
const fn: AsyncTask = (cb: VoidCallback): NodeJS.Timer => setTimeout(cb, 1000);
asyncDone(fn, () => {});
开发者ID:gulpjs,项目名称:async-done,代码行数:5,代码来源:various.ts


注:本文中的async-done.default函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。