adonis5-queue
Version:
Adonis JS 5 queue package based backed by Kue and Kue-scheduler
18 lines (17 loc) • 485 B
TypeScript
/// <reference types="@adonisjs/application/build/adonis-typings" />
import { ApplicationContract } from '@ioc:Adonis/Core/Application';
/**
* Provider to bind redis to the container
*/
export default class QueueProvider {
protected app: ApplicationContract;
constructor(app: ApplicationContract);
/**
* Register the redis binding
*/
register(): void;
/**
* Registering the health check checker with HealthCheck service
*/
boot(): void;
}