12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Predis\Connection;
- use Predis\Command\CommandInterface;
- interface AggregatedConnectionInterface extends ConnectionInterface
- {
-
- public function add(SingleConnectionInterface $connection);
-
- public function remove(SingleConnectionInterface $connection);
-
- public function getConnection(CommandInterface $command);
-
- public function getConnectionById($connectionId);
- }
|