IConnectionCluster.php 282 B

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