| 1 | <?php |
||
| 10 | class Sequence implements MessageDeduplicationIdCalculatorInterface |
||
| 11 | { |
||
| 12 | protected $current = 0; |
||
| 13 | protected $increment = 1; |
||
| 14 | |||
| 15 | 1 | public function __construct($start = 0, $increment = 1) |
|
| 20 | |||
| 21 | 1 | public function getMessageId($msgBody, $routingKey = '', array $additionalProperties = array()) |
|
| 27 | } |
||
| 28 |