Your IP : 216.73.217.13


Current Path : /var/www/www.indacotrentino.com/www/app/code/Torresani/MessageQueue/Model/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/app/code/Torresani/MessageQueue/Model/Subscriber.php

<?php

namespace Torresani\MessageQueue\Model;

use Magento\Framework\Model\AbstractModel;
use Torresani\MessageQueue\Api\MessageInterface;
use Torresani\MessageQueue\Api\SubscriberInterface;

class Subscriber implements SubscriberInterface
{
    /**
     * {@inheritdoc}
     */
    public function processMessage(MessageInterface $message)
    {
        echo 'Message received: ' . $message->getMessage() . PHP_EOL;
    }
}