1 | <?php |
||
15 | class QueueManager implements ContainerAwareInterface, QueueManagerInterface |
||
16 | { |
||
17 | protected $queueName; |
||
18 | protected $container; |
||
19 | protected $registeredProducers = array(); |
||
20 | protected $registeredConsumers = array(); |
||
21 | |||
22 | public function setContainer(ContainerInterface $container = null) |
||
26 | |||
27 | /** |
||
28 | * Does nothing |
||
29 | * @param string $queue |
||
30 | * @return $this |
||
31 | */ |
||
32 | public function setQueueName($queue) |
||
36 | |||
37 | public function listActions() |
||
41 | |||
42 | public function executeAction($action, array $arguments=array()) |
||
52 | |||
53 | protected function listConfiguredQueues($type = Queue::TYPE_ANY) |
||
72 | |||
73 | /** |
||
74 | * Used to keep track of the queues which are available (configured in the bundle) |
||
75 | * @param string $queueName |
||
76 | */ |
||
77 | public function registerProducer($queueName) { |
||
80 | |||
81 | /** |
||
82 | * Used to keep track of the queues which are available (configured in the bundle) |
||
83 | * @param string $queueName |
||
84 | */ |
||
85 | public function registerConsumer($queueName) { |
||
88 | } |
||
89 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.