/home/techb158/ileadtechnology.com/vendor/predis/predis/src/Connection
NameSizeModeActions
Aggregate/-0755rm
AbstractConnection.php51220644editdlrm
AggregateConnectionInterface.php16030644editdlrm
CompositeConnectionInterface.php12190644editdlrm
CompositeStreamConnection.php29750644editdlrm
ConnectionException.php4940644editdlrm
ConnectionInterface.php15560644editdlrm
Factory.php55620644editdlrm
FactoryInterface.php15430644editdlrm
NodeConnectionInterface.php13540644editdlrm
Parameters.php48930644editdlrm
ParametersInterface.php22290644editdlrm
PhpiredisSocketConnection.php118100644editdlrm
PhpiredisStreamConnection.php73860644editdlrm
StreamConnection.php121300644editdlrm
WebdisConnection.php93320644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/predis/predis/src/Connection/NodeConnectionInterface.php (1354B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Connection; use Predis\Command\CommandInterface; /** * Defines a connection used to communicate with a single Redis node. * * @author Daniele Alessandri */ interface NodeConnectionInterface extends ConnectionInterface { /** * Returns a string representation of the connection. * * @return string */ public function __toString(); /** * Returns the underlying resource used to communicate with Redis. * * @return mixed */ public function getResource(); /** * Returns the parameters used to initialize the connection. * * @return ParametersInterface */ public function getParameters(); /** * Pushes the given command into a queue of commands executed when * establishing the actual connection to Redis. * * @param CommandInterface $command Instance of a Redis command. */ public function addConnectCommand(CommandInterface $command); /** * Reads a response from the server. * * @return mixed */ public function read(); }