Files
predis/lib/Predis/Protocol/IProtocolProcessor.php
T
2011-10-18 15:51:55 +02:00

13 lines
294 B
PHP

<?php
namespace Predis\Protocol;
use Predis\Commands\ICommand;
use Predis\Network\IConnectionComposable;
interface IProtocolProcessor extends IResponseReader
{
public function write(IConnectionComposable $connection, ICommand $command);
public function setOption($option, $value);
}