1 | <?php |
||
12 | class QueueConfig |
||
13 | { |
||
14 | protected $name; |
||
15 | protected $passive; |
||
16 | protected $durable; |
||
17 | protected $exclusive; |
||
18 | protected $autoDelete; |
||
19 | protected $noWait; |
||
20 | protected $arguments; |
||
21 | |||
22 | public function __construct($name, $passive, $durable, $exclusive, $autoDelete, $noWait = false, $arguments = array()) |
||
32 | |||
33 | public function getName() |
||
37 | |||
38 | public function getPassive() |
||
42 | |||
43 | public function getDurable() |
||
47 | |||
48 | public function getExclusive() |
||
52 | |||
53 | public function getAutoDelete() |
||
57 | |||
58 | public function getNoWait() |
||
62 | |||
63 | public function getArguments() |
||
67 | } |