1 | <?php |
||
5 | class Queue |
||
6 | { |
||
7 | private $name; |
||
8 | private $adapter; |
||
9 | |||
10 | 6 | public function __construct($queueName, QueueInterface $adapter) |
|
15 | |||
16 | 6 | protected function setName($name) |
|
21 | |||
22 | 6 | protected function setAdapter(QueueInterface $adapter) |
|
27 | |||
28 | 6 | public function getName() |
|
32 | |||
33 | 6 | public function getAdapter() |
|
37 | |||
38 | 2 | public function send($message, array $options = []) |
|
42 | |||
43 | 2 | public function receive(array $options = []) |
|
47 | |||
48 | 2 | public function delete($receipt, array $options = []) |
|
52 | |||
53 | } |
||
54 |