Skip to content

Latest commit

 

History

History
131 lines (64 loc) · 1.09 KB

File metadata and controls

131 lines (64 loc) · 1.09 KB

ISYS_MessageBusTask interface

消息总线任务

Signature

interface ISYS_MessageBusTask 

Properties

Property

Modifiers

Type

Description

cancel

() => void

调用以取消任务

execute

(message: any) => Promise<void>

任务处理

running

() => boolean

检查运行状态


属性详情

cancel

ISYS_MessageBusTask.cancel property

调用以取消任务

Signature

cancel: () => void;

execute

ISYS_MessageBusTask.execute property

任务处理

Signature

execute: (message: any) => Promise<void>;

running

ISYS_MessageBusTask.running property

检查运行状态

Signature

running: () => boolean;