1 | <?php |
||
19 | class AMQPMessageIterator implements MessageIteratorInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var mixed |
||
23 | */ |
||
24 | protected $message; |
||
25 | |||
26 | /** |
||
27 | * @var AmqpMessage |
||
28 | */ |
||
29 | protected $AMQMessage; |
||
30 | |||
31 | /** |
||
32 | * @var int |
||
33 | */ |
||
34 | protected $counter; |
||
35 | |||
36 | /** |
||
37 | * @var int |
||
38 | */ |
||
39 | protected $timeout; |
||
40 | |||
41 | /** |
||
42 | * @var AmqpConsumer |
||
43 | */ |
||
44 | protected $consumer; |
||
45 | |||
46 | /** |
||
47 | * @var bool |
||
48 | */ |
||
49 | protected $isValid; |
||
50 | |||
51 | /** |
||
52 | * @deprecated since 3.2, will be removed in 4.x |
||
53 | * |
||
54 | * @var AMQPChannel |
||
55 | */ |
||
56 | protected $channel; |
||
57 | |||
58 | /** |
||
59 | * @deprecated since 3.2, will be removed in 4.x |
||
60 | * |
||
61 | * @var string |
||
62 | */ |
||
63 | protected $queue; |
||
64 | |||
65 | /** |
||
66 | * @param AMQPChannel $channel |
||
67 | * @param AmqpConsumer $consumer |
||
68 | */ |
||
69 | public function __construct(AMQPChannel $channel, AmqpConsumer $consumer) |
||
79 | |||
80 | /** |
||
81 | * {@inheritdoc} |
||
82 | */ |
||
83 | public function current() |
||
87 | |||
88 | /** |
||
89 | * {@inheritdoc} |
||
90 | */ |
||
91 | public function next() |
||
111 | |||
112 | /** |
||
113 | * {@inheritdoc} |
||
114 | */ |
||
115 | public function key() |
||
119 | |||
120 | /** |
||
121 | * {@inheritdoc} |
||
122 | */ |
||
123 | public function valid() |
||
127 | |||
128 | /** |
||
129 | * {@inheritdoc} |
||
130 | */ |
||
131 | public function rewind() |
||
134 | } |
||
135 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.