PHP code example of xskit / laravel-rabbitmq

1. Go to this page and download the library: Download xskit/laravel-rabbitmq library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

xskit / laravel-rabbitmq example snippets


$app->register(XsKit\LaravelRabbitMQ\RabbitMQServiceProvider::class);

     $job->delete();
    

      namespace App\Jobs\OneJob
      
      use Illuminate\Bus\Queueable;
      use Illuminate\Queue\SerializesModels;
      use Illuminate\Queue\InteractsWithQueue;
      use Illuminate\Contracts\Queue\ShouldQueue;
      use Illuminate\Foundation\Bus\Dispatchable;
      use XsKit\LaravelRabbitMQ\Contracts\PublishJobContract;
      use XsKit\LaravelRabbitMQ\Contracts\QueueNotDeclare;
      
      class OneJob extends PublishJobContract implements QueueNotDeclare
      {
          use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
    
          public $data;
    
          public function __construct($data)
         {
              //定义连接到队列 rabbitmq  发送路由:b.queue
              $this->onConnection('rabbitmq')->onQueue('b.queue');
        
              $this->$data = $data;       
          }
      }
      

         namespace App\Jobs\OneJob
         
         use Illuminate\Bus\Queueable;
         use Illuminate\Queue\SerializesModels;
         use Illuminate\Queue\InteractsWithQueue;
         use Illuminate\Contracts\Queue\ShouldQueue;
         use Illuminate\Foundation\Bus\Dispatchable;
         use XsKit\LaravelRabbitMQ\Contracts\ConsumeJobContract;
         
         class OneJob extends ConsumeJobContract
         {
             use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
        
             public $data;
        
             public function handle($data)
            {
                 //在这里处理你的业务           
             }
         }
        

$ php artisan rabbitmq:work [options] [--] [<connection>] [--routing=<key>] [--no-ack]

$ php artisan rabbitmq:work --help

            // 连接到 rabbitmq ,监听 default 队列 ,接收当前队列名为路由的消息
            $ php artisan rabbitmq:work
            
bash
       $ php artisan make:job OneJob
       
bash
        $ php artisan make:job OneJob