26 lines
222 B
PHP
26 lines
222 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
|
|
namespace Queue;
|
|
|
|
|
|
interface Consumer
|
|
{
|
|
|
|
|
|
public function __construct(array $params);
|
|
|
|
|
|
|
|
public function onWaiting();
|
|
|
|
|
|
public function onRunning();
|
|
|
|
|
|
public function onComplete();
|
|
|
|
|
|
}
|