JS API Reference

Interface: TaskExecutorEventsDict

executor/events.TaskExecutorEventsDict

This interface describes events emitted by TaskExecutor through TaskExecutor.events object.

Table of contents

Properties

Properties

ready

ready: () => void

Fires when task executor is initialized and ready to be used.

Type declaration

▸ (): void

Fires when task executor is initialized and ready to be used.

Returns

void

Defined in

src/executor/events.ts:8


beforeEnd

beforeEnd: () => void

Fires when task executor is about to shut down, immediately after TaskExecutor.shutdown() is called.

Type declaration

▸ (): void

Fires when task executor is about to shut down, immediately after TaskExecutor.shutdown() is called.

Returns

void

Defined in

src/executor/events.ts:14


end

end: () => void

Fires when task executor is completely terminated.

Type declaration

▸ (): void

Fires when task executor is completely terminated.

Returns

void

Defined in

src/executor/events.ts:19