mirror of
https://github.com/predis/predis.git
synced 2026-08-26 10:29:52 +00:00
15 lines
363 B
PHP
15 lines
363 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Distribution\INodeKeyGenerator;
|
|
|
|
interface ICommand {
|
|
public function getId();
|
|
public function getHash(INodeKeyGenerator $distributor);
|
|
public function setArguments(Array $arguments);
|
|
public function getArguments();
|
|
public function prefixKeys($prefix);
|
|
public function parseResponse($data);
|
|
}
|