mirror of
https://github.com/predis/predis.git
synced 2026-08-22 15:10:57 +00:00
12 lines
282 B
PHP
12 lines
282 B
PHP
<?php
|
|
|
|
namespace Predis\Network;
|
|
|
|
use Predis\Commands\ICommand;
|
|
|
|
interface IConnectionCluster extends IConnection {
|
|
public function add(IConnectionSingle $connection);
|
|
public function getConnection(ICommand $command);
|
|
public function getConnectionById($connectionId);
|
|
}
|