123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace Predis\Pipeline;
- use SplQueue;
- use Predis\Connection\ConnectionInterface;
- interface PipelineExecutorInterface
- {
-
- public function execute(ConnectionInterface $connection, SplQueue $commands);
- }
|