* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ namespace Webman\RedisQueue; /** * Interface Consumer * @package Webman\RedisQueue */ interface Consumer { public function consume($data); }