Skip to content

Overview

This page will cover the providers, what they do and how to use them.

Logger

The logger is an extendable logging class that you can use to build your own logger, or you can build one from scratch.

Methods

MethodDescription
addListener(unique: symbol, callback: (message: string) => void): voidAdds a listener to the logger, you can use this to listen for any log.
removeListener(unique: symbol): voidRemoves a listener from the logger.
info(message: string): Promise<void>Logs an info message.
warn(message: string): Promise<void>Logs a warning message.
error(message: string): Promise<void>Logs an error message.

TasksProvider

The tasks provider is used to handle calling manually defined tasks.

Methods

MethodDescription
getTasks(type: ITaskType = 'any'): string[]Gets the tasks by type and returns an array of names.
getTaskByName(name: string): Cron|BaseTask|nullGets a task by name.
run(name: string): Promise<void>Runs a task by name.

ThreadsProvider

The threads provider, gives an injectable interface for dispatching tasks to threads.

Methods

MethodDescription
dispatch(name: string, command: string, context?: Record<string, any>, timeout?: number): Promise<unknown>Dispatches a task to a thread.

Released under the Apache-2.0 License.