Runnable interface

Runnable 的 run 方法可直接叫用使用者定義的函式,適用於單元測試。

簽名:

export interface Runnable<T> 

屬性

屬性 類型 說明
run (資料:T,情境:任何) =>承諾<任何>|任何 直接叫用使用者定義的函式。

Runnable.run

直接叫用使用者定義的函式。

簽名:

run: (data: T, context: any) => PromiseLike<any> | any;