/** * @rlanz/bull-queue * * @license MIT * @copyright Romain Lanz */ /// /// /// /// /// /// /// /// import type { ApplicationContract } from '@ioc:Adonis/Core/Application'; export default class QueueProvider { protected app: ApplicationContract; private queue; constructor(app: ApplicationContract); register(): void; /** * Gracefully shutdown connections when app goes down. */ shutdown(): Promise; }