magefast/module-qprocess
最新稳定版本:1.0.3
Composer 安装命令:
composer require magefast/module-qprocess
包简介
Magento module, Easy Add Task to Queue
README 文档
README
Sample module how can add Queue Message and processing it.
CLI command for retrieve list of all configured Queue Message:
bin/magento queue:consumers:list
CLI command for watch/listen Queue Messages:
bin/magento queue:consumers:start -vvv qprocess.task
CLI command for add test Queue Message:
bin/magento qprocess:test
Service for Publish (add) Queue Message
\Magefast\Qprocess\Service\Add::execute
Method where processed Queue Message, here can(need) add custom logic for processing - add Event, Service etc.
\Magefast\Qprocess\Model\Task::processMessage
Sample: How To add Task to Queue with this Module Magefast_Qprocess
- For example in Observer Class for event
catalog_product_save_afterneed add Task for Sync/Send SMS
or Call to External services.
Bellow sample of Observer Class
namespace Strekoza\Sample\Observer;
use Magefast\Qprocess\Service\Add;
use Magento\Catalog\Model\Product;
use Magento\Framework\Event\Observer as EventObserver;
use Magento\Framework\Event\ObserverInterface;
use Magento\Framework\Serialize\Serializer\Json;
class ProductUpdateObserver implements ObserverInterface
{
private Json $json;
private Add $addMessageQueue;
public function __construct(
Json $json,
Add $addMessageQueue
)
{
$this->json = $json;
$this->addMessageQueue = $addMessageQueue;
}
public function execute(EventObserver $observer)
{
/** @var Product $product */
$product = $observer->getEvent()->getProduct();
/**
* Add to QUEUE
*/
$objectData = [];
$objectData['sku'] = $product->getSku();
$jsonData = [
'type' => 'custom_task_product',
'data' => $objectData
];
$jsonSting = $this->json->serialize($jsonData);
$this->addMessageQueue->execute('qprocess.task', $jsonSting);
}
}
2) Add solution for Processing of Task, that added before. It will added with event `qprocess_task`. Bellow peace of code for `etc/events.xml`
<event name="qprocess_task"> <observer name="sample_qprocess_task" instance="Strekoza\Sample\Observer\QprocessTask"/> </event>
And Observer Class QprocessTask
namespace Strekoza\Sample\Observer;
use Exception;
use Magento\Framework\Event\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\Framework\Serialize\Serializer\Json;
class QprocessTask implements ObserverInterface
{
private Json $json;
public function __construct(
Json $json
)
{
$this->json = $json;
}
public function execute(Observer $observer)
{
$object = $observer->getEvent()->getObject();
$data = $this->json->unserialize($object->getValue());
if (!is_array($data)) {
return;
}
if (!isset($data['type']) || !isset($data['data'])) {
$object->setResult(false);
return;
}
if ($data['type'] == 'custom_task_product') {
try {
$sku = $data['data']['sku'];
//@todo YOUR LOGIC HERE with $sku of Product
return;
} catch (Exception $e) {
return;
}
}
}
}
3) Its All. Take a look, if class/file `Observer\QprocessTask` is changed, need also regenerate code.
Install With Composer
composer require magefast/module-qprocess
Links
https://devdocs.magento.com/guides/v2.4/config-guide/mq/manage-message-queues.html
https://www.atwix.com/magento-2/getting-started-with-message-queues-in-magento/
https://store.magenest.com/blog/create-a-message-queue-in-magento-2/
https://webkul.com/blog/here-we-will-learn-how-to-configure-and-use-rabbitmq-in-magento-2-3/
https://blog.gaiterjones.com/magento-2-asynchronous-message-queue-management/
https://blogs.perficient.com/2021/03/09/rabbitmq-integration-with-magento-2-4/
https://amasty.com/knowledge-base/how-to-use-rabbitmq-in-magento-2-plugins.html
https://inviqa.com/blog/magento-2-tutorial-message-queues
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2025-10-27