Queue
A queue service to run tasks in the background or schedule them to run at a certain time.
Available:
Jobs:
export class Example {
public static get key(): Capitalize<string> {
return 'Example';
}
public async handle({ data }: { data: { message: string } }): Promise<void> {
return console.log('I have a message for you: %s', data.message);
}
}Methods:
Last updated