1 | <?php |
||
10 | class Consumer implements ConsumerInterface |
||
11 | { |
||
12 | /** @var \Aws\Kinesis\KinesisClient */ |
||
13 | protected $client; |
||
14 | protected $shardId; |
||
15 | protected $streamName; |
||
16 | protected $callback; |
||
17 | /** @var \Kaliop\Queueing\Plugins\KinesisBundle\Service\SequenceNumberStoreInterface */ |
||
18 | protected $sequenceNumberStore; |
||
19 | // allowed values: TRIM_HORIZON and LATEST |
||
20 | protected $defaultShardIteratorType = 'TRIM_HORIZON'; |
||
21 | protected $requestBatchSize = 1; |
||
22 | |||
23 | 1 | public function __construct(array $config) |
|
27 | |||
28 | /** |
||
29 | * Does nothing |
||
30 | * @param int $limit |
||
31 | * @return Consumer |
||
32 | */ |
||
33 | public function setMemoryLimit($limit) |
||
37 | |||
38 | /** |
||
39 | * @param string $key |
||
40 | * @return Consumer |
||
41 | * @todo if null and there is only 1 shard in the stream -> get it! Or allow asking for shard 1, 2, 3, ... instead of using the Id |
||
42 | */ |
||
43 | public function setRoutingKey($key) |
||
49 | |||
50 | /** |
||
51 | * @param MessageConsumerInterface $callback |
||
52 | * @return Consumer |
||
53 | */ |
||
54 | public function setCallback($callback) |
||
63 | |||
64 | /** |
||
65 | * @param SequenceNumberStoreInterface $store |
||
66 | * @return Consumer |
||
67 | */ |
||
68 | 1 | public function setSequenceNumberStore(SequenceNumberStoreInterface $store) |
|
74 | |||
75 | /** |
||
76 | * The number of messages to download in every request to the Kinesis API. |
||
77 | * Bigger numbers are better for performances, but there is a limit on the size of the response which Kinesis will send. |
||
78 | * @param int $amount |
||
79 | * @return Consumer |
||
80 | */ |
||
81 | 1 | public function setRequestBatchSize($amount) |
|
87 | |||
88 | /** |
||
89 | * Use this to decide what happens when the Consumer starts getting messages from a shard, and it does not |
||
90 | * have stored a pointer to the last consumed message. |
||
91 | * |
||
92 | * @param string $type either LATEST (discard messages already in the shard) or TRIM_HORIZON (get all messages in the shard) |
||
93 | * @return Consumer |
||
94 | */ |
||
95 | 1 | public function setDefaultShardIteratorType($type) |
|
101 | |||
102 | /** |
||
103 | * @see http://docs.aws.amazon.com/aws-sdk-php/v2/api/class-Aws.Kinesis.KinesisClient.html#_getRecords |
||
104 | * Will throw an exception if $amount is > 10.000 |
||
105 | * |
||
106 | * @param int $amount |
||
107 | * @param int $timeout |
||
108 | * @return nothing |
||
109 | */ |
||
110 | public function consume($amount, $timeout=0) |
||
161 | |||
162 | /** |
||
163 | * Builds an iterator to start getting messages from the shard based on both injected config and the fact that |
||
164 | * the store has a value for the last Sequence Number previously read |
||
165 | */ |
||
166 | protected function getInitialMessageIterator() |
||
187 | |||
188 | /** |
||
189 | * @param string $queueName |
||
190 | * @return Consumer |
||
191 | */ |
||
192 | public function setQueueName($queueName) |
||
198 | } |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.