QueueManager::extend()

void extend(string $driver, Closure $resolver) Add a queue connection resolver. Parameters string $driver Closure $resolver Return Value void

QueueManager::failing()

void failing(mixed $callback) Register an event listener for the failed job event. Parameters mixed $callback Return Value void

QueueManager::getDefaultDriver()

string getDefaultDriver() Get the name of the default queue connection. Return Value string

QueueManager::getName()

string getName(string $connection = null) Get the full name for the given connection. Parameters string $connection Return Value string

QueueManager::isDownForMaintenance()

bool isDownForMaintenance() Determine if the application is in maintenance mode. Return Value bool

QueueManager::looping()

void looping(mixed $callback) Register an event listener for the daemon queue loop. Parameters mixed $callback Return Value void

QueueManager::setDefaultDriver()

void setDefaultDriver(string $name) Set the name of the default queue connection. Parameters string $name Return Value void

QueueManager::stopping()

void stopping(mixed $callback) Register an event listener for the daemon queue stopping. Parameters mixed $callback Return Value void

QueueManager::__call()

mixed __call(string $method, array $parameters) Dynamically pass calls to the default connection. Parameters string $method array $parameters Return Value mixed

QueueManager::__construct()

void __construct(Application $app) Create a new queue manager instance. Parameters Application $app Return Value void