1 | <?php |
||
19 | class AMQPMessageIterator implements MessageIteratorInterface |
||
20 | { |
||
21 | /** |
||
22 | * @deprecated since 3.2, will be removed in 4.x |
||
23 | * |
||
24 | * @var AMQPChannel |
||
25 | */ |
||
26 | protected $channel; |
||
27 | |||
28 | /** |
||
29 | * @var mixed |
||
30 | */ |
||
31 | protected $message; |
||
32 | |||
33 | /** |
||
34 | * @var AmqpMessage |
||
35 | */ |
||
36 | protected $AMQMessage; |
||
37 | |||
38 | /** |
||
39 | * @deprecated since 3.2, will be removed in 4.x |
||
40 | * |
||
41 | * @var string |
||
42 | */ |
||
43 | protected $queue; |
||
44 | |||
45 | /** |
||
46 | * @var int |
||
47 | */ |
||
48 | protected $counter; |
||
49 | |||
50 | /** |
||
51 | * @var int |
||
52 | */ |
||
53 | protected $timeout; |
||
54 | |||
55 | /** |
||
56 | * @var AmqpConsumer |
||
57 | */ |
||
58 | protected $consumer; |
||
59 | |||
60 | /** |
||
61 | * @var bool |
||
62 | */ |
||
63 | protected $isValid; |
||
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.