PHP code example of mhujer / rabbit-mq-database-transaction-producer-bundle
1. Go to this page and download the library: Download mhujer/rabbit-mq-database-transaction-producer-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/ */
mhujer / rabbit-mq-database-transaction-producer-bundle example snippets
use Doctrine\ORM\EntityManager;
use OldSound\RabbitMqBundle\RabbitMq\ProducerInterface as Producer;
class ImportFacade
{
/** @var \OldSound\RabbitMqBundle\RabbitMq\ProducerInterface */
private $importProcessItemRabbitMqProducer;
/** @var \Doctrine\ORM\EntityManager */
private $entityManager;
public function __construct(
Producer $importProcessItemRabbitMqProducer,
EntityManager $entityManager
)
{
$this->importProcessItemRabbitMqProducer = $importProcessItemRabbitMqProducer;
$this->entityManager = $entityManager;
}
public function import()
{
// $items = ...
$this->entityManager->transactional(function () use ($items) {
$this->entityManager->flush();
foreach ($items as $item) {
$this->importProcessItemRabbitMqProducer->publish($item->getId());
}
});
}
}
// config/bundles.php
return [
// ...
VasekPurchart\RabbitMqDatabaseTransactionProducerBundle\RabbitMqDatabaseTransactionProducerBundle::class => ['all' => true],
];