@cavai/adonis-queue
Version:
> Basic AdonisJS queue provider
21 lines (20 loc) • 475 B
TypeScript
import { BaseCommand } from '@adonisjs/ace';
export default class StartQueue extends BaseCommand {
static settings: {
stayAlive: boolean;
loadApp: boolean;
};
/**
* Command Name is used to run the command
*/
static commandName: string;
/**
* Command Name is displayed in the "help" output
*/
static description: string;
/**
* The name of the job file.
*/
name: string;
run(): Promise<void>;
}