1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Predis\Connection;
- use Predis\Protocol\ProtocolInterface;
- interface ComposableConnectionInterface extends SingleConnectionInterface
- {
-
- public function getProtocol();
-
- public function writeBytes($buffer);
-
- public function readBytes($length);
-
- public function readLine();
- }
|