Implement queue work and listen commands
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-01-27 10:34:01 -06:00
parent e098a5edb7
commit 16e5fa00aa
19 changed files with 271 additions and 17 deletions

View File

@@ -3,7 +3,8 @@ import {Singleton, Instantiable} from '../di'
import {Queueable} from '../support/bus'
/**
* A canonical unit that resolves Queueable classes from `app/jobs`.
* A canonical unit that resolves Queueable classes from `app/jobs` and sets up
* any non-default queues.
*/
@Singleton()
export class Queueables extends CanonicalStatic<Queueables, Instantiable<Queueable>> {