1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\MessageQueue;
/**
* Queue factory
*/
class QueueRepository
{
/**
* @var \Magento\Framework\ObjectManagerInterface
*/
private $objectManager;
/**
* @var QueueInterface[]
*/
private $queueInstances;
/**
* @var QueueFactoryInterface
*/
private $queueFactory;
/**
* @param \Magento\Framework\ObjectManagerInterface $objectManager
* @param string[] $queues
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager, array $queues = [])
{
$this->objectManager = $objectManager;
}
/**
* Get queue instance by connection name and queue name.
*
* @param string $connectionName
* @param string $queueName
* @return QueueInterface
* @throws \LogicException
*/
public function get($connectionName, $queueName)
{
if (!isset($this->queueInstances[$connectionName][$queueName])) {
$queue = $this->getQueueFactory()->create($queueName, $connectionName);
$this->queueInstances[$connectionName][$queueName] = $queue;
}
return $this->queueInstances[$connectionName][$queueName];
}
/**
* Get queue factory.
*
* @return QueueFactoryInterface
* @deprecated 102.0.1
*/
private function getQueueFactory()
{
if ($this->queueFactory === null) {
$this->queueFactory = $this->objectManager->get(QueueFactoryInterface::class);
}
return $this->queueFactory;
}
}