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