1. Go to this page and download the library: Download erkens/bunny-bundle 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/ */
erkens / bunny-bundle example snippets
use Skrz\Bundle\BunnyBundle\SkrzBunnyBundle;
class AppKernel
{
public function registerBundles()
{
return [
...
new SkrzBunnyBundle()
...
];
}
}
class Product
{
/** @var int */
protected $id;
/** @var string */
protected $title;
// ... getters, setters, etc.
}
class Category
{
/** @var int */
protected $id;
/** @var string */
protected $title;
// ... getters, setters, etc.
}
class Change
{
/** @var Product change in product */
protected $product;
/** @var Category change in category */
protected $category;
/** @var string which hostname the change happened on */
protected $hostname;
/** @var int which user made the change */
protected $userId;
// ... getters, setters, etc.
}
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
/**
* @Producer(
* exchange="change",
* beforeMethod="preProcessMessage",
* meta="ChangeMeta"
* )
*/
class ChangeProducer extends AbstractProducer
{
/**
* @var TokenStorage
*
* @Autowired
*/
public $tokenStorage;
public function preProcessMessage(Change $change)
{
$change
->setHostname(gethostname())
->setUserId($this->tokenStorage->getToken()->getUser()->getId());
}
}
use Bunny\Client;
use Bunny\Message;
/**
* @Consumer(
* queue="product_categorize",
* meta="ChangeMeta",
* maxMessages=1000,
* maxSeconds=3600.0,
* prefetchCount=1
* )
*/
class ProductCategorizeConsumer
{
public function handleMessage(Change $change, Message $message, Channel $channel)
{
// ... expensive product categorization algorithm ...
$channel->ack($message);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.