UNPKG

electron-rpc-async-queue

Version:

Async queue implementation for Electron RPC

12 lines (11 loc) 366 B
/** Available task events types */ export enum TaskEventType { /** Task was started */ START = 'TaskEventType.START', /** Task completed successfully */ SUCCESS = 'TaskEventType.SUCCESS', /** Tasks throws an error */ ERROR = 'TaskEventType.ERROR', /** Task execution ended (successfully or with error) */ END = 'TaskEventType.END', }