| 1 | <?php |
||
| 8 | class ResolverStrategyService |
||
| 9 | { |
||
| 10 | public const DEFAULT_STRATEGY = 'default_delay_strategy'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $handlers; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $queuesConfiguration; |
||
| 21 | |||
| 22 | 1 | public function __construct(iterable $handlers, array $queuesConfiguration = []) |
|
| 27 | |||
| 28 | 1 | public function getStrategy(string $queueName): DelayStrategyInterface |
|
| 34 | } |
||
| 35 |