Interface.php in Redis 7.2
Same filename in this branch
Same filename and directory in other branches
File
lib/Redis/Client/Interface.phpView source
<?php
/**
* Client proxy, client handling class tied to the bare mininum.
*/
interface Redis_Client_Interface {
/**
* Get the connected client instance.
*
* @return mixed
* Real client depends from the library behind.
*/
public function getClient($host = NULL, $port = NULL, $base = NULL, $socket = NULL);
/**
* Get underlaying library name used.
*
* This can be useful for contribution code that may work with only some of
* the provided clients.
*
* @return string
*/
public function getName();
}
Interfaces
Name | Description |
---|---|
Redis_Client_Interface | Client proxy, client handling class tied to the bare mininum. |