home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Connectors
➕ New
📤 Upload
✎ Editing:
RedisConnector.php
← Back
<?php namespace Illuminate\Queue\Connectors; use Illuminate\Redis\Database; use Illuminate\Queue\RedisQueue; class RedisConnector implements ConnectorInterface { /** * The Redis database instance. * * @var \Illuminate\Redis\Database */ protected $redis; /** * The connection name. * * @var string */ protected $connection; /** * Create a new Redis queue connector instance. * * @param \Illuminate\Redis\Database $redis * @param string|null $connection * @return void */ public function __construct(Database $redis, $connection = null) { $this->redis = $redis; $this->connection = $connection; } /** * Establish a queue connection. * * @param array $config * @return \Illuminate\Queue\QueueInterface */ public function connect(array $config) { $queue = new RedisQueue( $this->redis, $config['queue'], array_get($config, 'connection', $this->connection) ); $queue->setExpire(array_get($config, 'expire', 60)); return $queue; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel