PHP code example of dushige / laravel-queue-rocketmq123
1. Go to this page and download the library: Download dushige/laravel-queue-rocketmq123 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/ */
dushige / laravel-queue-rocketmq123 example snippets
// Without message tag (ROCKETMQ_USE_MESSAGE_TAG=false)
Job::dispatch()->onConnection('connection-name')->onQueue('TopicTestMQ');
// or dispatch((new Job())->onConnection('connection-name')->onQueue('TopicTestMQ'))
// With message tag (ROCKETMQ_USE_MESSAGE_TAG=true)
Job::dispatch()->onConnection('connection-name')->onQueue('TagA');
// or dispatch((new Job())->onConnection('connection-name')->onQueue('TagA'))
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Freyo\LaravelQueueRocketMQ\Queue\Contracts\PlainPayload;
class RocketMQPlainJob implements ShouldQueue, PlainPayload
{
use Dispatchable, InteractsWithQueue, Queueable;
protected $payload;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($payload)
{
$this->payload = $payload;
}
/**
* Get the plain payload of the job.
*
* @return string
*/
public function getPayload()
{
return $this->payload;
}
}
namespace App\Jobs;
use Illuminate\Queue\Jobs\Job;
class RocketMQPlainJobHandler
{
/**
* Execute the job.
*
* @param \Illuminate\Queue\Jobs\Job $job
* @param string $payload
*
* @return void
*/
public function handle(Job $job, $payload)
{
// processing your payload...
var_dump($payload);
// release back to the queue manually when failed.
// $job->release();
// delete message when processed.
if (! $job->isDeletedOrReleased()) {
$job->delete();
}
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.