mirror of
https://github.com/predis/predis.git
synced 2026-08-25 07:09:37 +00:00
4e6ed3f26d
This is a starting point to add a documentation of the whole set of APIs and classes of Predis. The next step will be to actually improve and extend it.
43 lines
1.1 KiB
PHP
43 lines
1.1 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\Commands\Processors;
|
|
|
|
/**
|
|
* A command processor chain processes a command using multiple chained command
|
|
* processor before it is sent to Redis.
|
|
*
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
interface ICommandProcessorChain extends ICommandProcessor, \IteratorAggregate, \Countable
|
|
{
|
|
/**
|
|
* Adds a command processor.
|
|
*
|
|
* @param ICommandProcessor $processor A command processor.
|
|
*/
|
|
public function add(ICommandProcessor $processor);
|
|
|
|
/**
|
|
* Removes a command processor from the chain.
|
|
*
|
|
* @param ICommandProcessor $processor A command processor.
|
|
*/
|
|
public function remove(ICommandProcessor $processor);
|
|
|
|
/**
|
|
* Gets the ordered list of command processors in the chain.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getProcessors();
|
|
}
|