1 | <?php |
||
24 | class ResolveCacheProcessor implements PsrProcessor, TopicSubscriberInterface, QueueSubscriberInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var FilterManager |
||
28 | */ |
||
29 | private $filterManager; |
||
30 | |||
31 | /** |
||
32 | * @var FilterService |
||
33 | */ |
||
34 | private $filterService; |
||
35 | |||
36 | /** |
||
37 | * @var ProducerInterface |
||
38 | */ |
||
39 | private $producer; |
||
40 | |||
41 | /** |
||
42 | * @param FilterManager $filterManager |
||
43 | * @param FilterService $filterService |
||
44 | * @param ProducerInterface $producer |
||
45 | */ |
||
46 | public function __construct( |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function process(PsrMessage $psrMessage, PsrContext $psrContext) |
||
82 | |||
83 | /** |
||
84 | * {@inheritdoc} |
||
85 | */ |
||
86 | public static function getSubscribedTopics(): array |
||
92 | |||
93 | /** |
||
94 | * {@inheritdoc} |
||
95 | */ |
||
96 | public static function getSubscribedQueues(): array |
||
100 | } |
||
101 |