for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gendoria\CommandQueue\QueueManager;
use Gendoria\CommandQueue\Command\CommandInterface;
use Gendoria\CommandQueue\SendDriver\SendDriverInterface;
/**
* Description of NullQueueManager
*
* @author Tomasz Struczyński <[email protected]>
*/
class NullQueueManager implements MultipleQueueManagerInterface, CommandRouterInterface, SingleQueueManagerInterface
{
* {@inheritdoc}
public function addSendDriver($pool, SendDriverInterface $sendDriver, $isDefault = false)
}
public function addCommandRoute($commandExpression, $poolName)
public function sendCommand(CommandInterface $command)
public function setSendDriver(SendDriverInterface $sendDriver)