mirror of
https://github.com/predis/predis.git
synced 2026-08-22 22:21:01 +00:00
14 lines
349 B
PHP
14 lines
349 B
PHP
<?php
|
|
|
|
namespace Predis\Network;
|
|
|
|
use Predis\Protocols\IProtocolProcessor;
|
|
|
|
interface IConnectionComposable extends IConnectionSingle {
|
|
public function setProtocol(IProtocolProcessor $protocol);
|
|
public function getProtocol();
|
|
public function writeBytes($buffer);
|
|
public function readBytes($length);
|
|
public function readLine();
|
|
}
|