mirror of
https://github.com/predis/predis.git
synced 2026-08-20 14:13:19 +00:00
67 lines
1.6 KiB
PHP
67 lines
1.6 KiB
PHP
<?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());
|
|
}
|