123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /*
- * This file is part of the Predis package.
- *
- * (c) Daniele Alessandri <suppakilla@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Predis;
- use Predis\Command\CommandInterface;
- use Predis\Configuration\OptionsInterface;
- use Predis\Connection\ConnectionInterface;
- use Predis\Profile\ProfileInterface;
- /**
- * Interface defining the most important methods needed to create an high-level
- * Redis client that can interact with other building blocks of Predis.
- *
- * @author Daniele Alessandri <suppakilla@gmail.com>
- */
- interface ClientInterface extends BasicClientInterface
- {
- /**
- * Returns the server profile used by the client.
- *
- * @return ProfileInterface
- */
- public function getProfile();
- /**
- * Returns the client options specified upon initialization.
- *
- * @return OptionsInterface
- */
- public function getOptions();
- /**
- * Opens the underlying connection to the server.
- */
- public function connect();
- /**
- * Closes the underlying connection from the server.
- */
- public function disconnect();
- /**
- * Returns the underlying connection instance.
- *
- * @return ConnectionInterface
- */
- public function getConnection();
- /**
- * Creates a new instance of the specified Redis command.
- *
- * @param string $method Command ID.
- * @param array $arguments Arguments for the command.
- * @return CommandInterface
- */
- public function createCommand($method, $arguments = array());
- }
|