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
Method | Description |
---|---|
addListener(unique: symbol, callback: (message: string) => void): void | Adds a listener to the logger, you can use this to listen for any log. |
removeListener(unique: symbol): void | Removes 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
Method | Description |
---|---|
getTasks(type: ITaskType = 'any'): string[] | Gets the tasks by type and returns an array of names. |
getTaskByName(name: string): Cron|BaseTask|null | Gets 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
Method | Description |
---|---|
dispatch(name: string, command: string, context?: Record<string, any>, timeout?: number): Promise<unknown> | Dispatches a task to a thread. |