QueueServiceProvider
라라벨의 다양한 서비스 등록 대부분은 다양한 ServiceProvider를 통해 바인딩되며 큐 서비스도 예외는 아닙니다. 네임스페이스 IlluminateQueueQueueServiceProvider 파일을 열고 등록 방법인
public function register() { // 注册队列管理器 一旦实例化,为队列连接器注册各种解析器,这些连接器负责创建接受队列配置和实例化各种不同队列处理的类。 // 按照配置文件注册一个默认连接方式 在此使用 redis $this->registerManager(); // 注册队列各种命令 队列连接 重启等。 $this->registerWorker(); // 注册队列监听命令 $this->registerListener(); // 5.1后弃用 $this->registerSubscriber(); // 注册队列失败处理 $this->registerFailedJobServices(); // Register the Illuminate queued closure job. 什么用,后面再看。 $this->registerQueueClosure(); }
php artisan make:job SendReminderEmail
작업을 할당할 때 실제로는 IlluminateBus 아래 Dispatcher 클래스의 디스패처 메서드인 보조 함수 디스패치를 사용합니다.
public function dispatch($command, Closure $afterResolving = null) { if ($this->queueResolver && $this->commandShouldBeQueued($command)) { // 队列执行 return $this->dispatchToQueue($command); } else { // 立即执行 return $this->dispatchNow($command, $afterResolving); } } protected function commandShouldBeQueued($command) { if ($command instanceof ShouldQueue) { // 就这用。。 return true; } return (new ReflectionClass($this->getHandlerClass($command)))->implementsInterface( 'Illuminate\Contracts\Queue\ShouldQueue' ); }
public function register() { $this->app->singleton('Illuminate\Bus\Dispatcher', function ($app) { return new Dispatcher($app, function () use ($app) { // 'queue.connection' => 'Illuminate\Contracts\Queue\Queue', 再回看 QueueServiceProvider 的 registerManager 方法,就很清晰了。 return $app['Illuminate\Contracts\Queue\Queue']; // 默认队列连接 }); }); }
public function dispatchToQueue($command) { $queue = call_user_func($this->queueResolver); // 在此为设置的默认值 将实例化 RedisQueue // 异常则抛出! if (! $queue instanceof Queue) { throw new RuntimeException('Queue resolver did not return a Queue implementation.'); } if (method_exists($command, 'queue')) { // 可以自定义 return $command->queue($queue, $command); } else { // 在此使用的是进入队列方式 最终结果类似 $queue->push(); 看 RedisQueue 下的 push 方法。 return $this->pushCommandToQueue($queue, $command); } }