mirror of
https://github.com/predis/predis.git
synced 2026-08-21 11:51:00 +00:00
13 lines
332 B
PHP
13 lines
332 B
PHP
<?php
|
|
|
|
namespace Predis\Protocols;
|
|
|
|
use Predis\Commands\ICommand;
|
|
use Predis\Network\IConnectionComposable;
|
|
|
|
interface IProtocolProcessor {
|
|
public function write(IConnectionComposable $connection, ICommand $command);
|
|
public function read(IConnectionComposable $connection);
|
|
public function setOption($option, $value);
|
|
}
|