| Current Path : /home/rtorresani/www/app/code/Torresani/MessageQueue/Api/ |
| Current File : //home/rtorresani/www/app/code/Torresani/MessageQueue/Api/SubscriberInterface.php |
<?php
namespace Torresani\MessageQueue\Api;
use Torresani\MessageQueue\Api\MessageInterface;
interface SubscriberInterface
{
/**
* @return void
*/
public function processMessage(MessageInterface $message);
}