IConnectionCluster.php 282 B

1234567891011
  1. <?php
  2. namespace Predis\Network;
  3. use Predis\Commands\ICommand;
  4. interface IConnectionCluster extends IConnection {
  5. public function add(IConnectionSingle $connection);
  6. public function getConnection(ICommand $command);
  7. public function getConnectionById($connectionId);
  8. }