1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Predis\Connection;
- use Predis\Command\CommandInterface;
- interface ReplicationConnectionInterface extends AggregatedConnectionInterface
- {
-
- public function switchTo($connection);
-
- public function getCurrent();
-
- public function getMaster();
-
- public function getSlaves();
- }
|