Files
predis/lib/Predis/Protocol/IProtocolProcessor.php
T
2011-06-04 15:45:01 +02:00

12 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);
}