/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Queue
NameSizeModeActions
Capsule/-0755rm
Connectors/-0755rm
Console/-0755rm
Events/-0755rm
Failed/-0755rm
Jobs/-0755rm
Middleware/-0755rm
BeanstalkdQueue.php48490644editdlrm
CallQueuedClosure.php25900644editdlrm
CallQueuedHandler.php83740644editdlrm
composer.json16190644editdlrm
DatabaseQueue.php110990644editdlrm
InteractsWithQueue.php13970644editdlrm
InvalidPayloadException.php3750644editdlrm
LICENSE.md10750644editdlrm
Listener.php56430644editdlrm
ListenerOptions.php8390644editdlrm
LuaScripts.php44190644editdlrm
ManuallyFailedException.php1250644editdlrm
MaxAttemptsExceededException.php1300644editdlrm
NullQueue.php14220644editdlrm
Queue.php106770644editdlrm
QueueManager.php68510644editdlrm
QueueServiceProvider.php80990644editdlrm
README.md12170644editdlrm
RedisQueue.php94340644editdlrm
SerializableClosure.php9540644editdlrm
SerializesAndRestoresModelIdentifiers.php34680644editdlrm
SerializesModels.php33250644editdlrm
SqsQueue.php52010644editdlrm
SyncQueue.php39500644editdlrm
Worker.php245430644editdlrm
WorkerOptions.php24130644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Queue/README.md (1217B)
## Illuminate Queue The Laravel Queue component provides a unified API across a variety of different queue services. Queues allow you to defer the processing of a time consuming task, such as sending an e-mail, until a later time, thus drastically speeding up the web requests to your application. ### Usage Instructions First, create a new Queue `Capsule` manager instance. Similar to the "Capsule" provided for the Eloquent ORM, the queue Capsule aims to make configuring the library for usage outside of the Laravel framework as easy as possible. ```PHP use Illuminate\Queue\Capsule\Manager as Queue; $queue = new Queue; $queue->addConnection([ 'driver' => 'beanstalkd', 'host' => 'localhost', 'queue' => 'default', ]); // Make this Capsule instance available globally via static methods... (optional) $queue->setAsGlobal(); ``` Once the Capsule instance has been registered. You may use it like so: ```PHP // As an instance... $queue->push('SendEmail', ['message' => $message]); // If setAsGlobal has been called... Queue::push('SendEmail', ['message' => $message]); ``` For further documentation on using the queue, consult the [Laravel framework documentation](https://laravel.com/docs).