QueueManager::setDefaultDriver()

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

QueueManager::looping()

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

QueueManager::isDownForMaintenance()

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

QueueManager::getName()

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

QueueManager::getDefaultDriver()

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

QueueManager::failing()

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

QueueManager::extend()

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

QueueManager::exceptionOccurred()

void exceptionOccurred(mixed $callback) Register an event listener for the exception occurred job event. Parameters mixed $callback Return Value void

QueueManager::connection()

Queue connection(string $name = null) Resolve a queue connection instance. Parameters string $name Return Value Queue

QueueManager::connected()

bool connected(string $name = null) Determine if the driver is connected. Parameters string $name Return Value bool