-
Notifications
You must be signed in to change notification settings - Fork 10
/
BatchAcknowledgementHandler.php
117 lines (99 loc) · 2.81 KB
/
BatchAcknowledgementHandler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
* This file is part of graze/queue.
*
* Copyright (c) 2015 Nature Delivered Ltd. <https://www.graze.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license https://github.com/graze/queue/blob/master/LICENSE MIT
*
* @link https://github.com/graze/queue
*/
namespace Graze\Queue\Handler;
use Graze\Queue\Adapter\AdapterInterface;
use Graze\Queue\Message\MessageInterface;
class BatchAcknowledgementHandler extends AbstractAcknowledgementHandler
{
/** @var int */
protected $batchSize;
/** @var MessageInterface[] */
protected $acknowledged = [];
/** @var MessageInterface[] */
protected $rejected = [];
/** @var MessageInterface[][] */
protected $delayed = [];
/**
* @param int $batchSize
*/
public function __construct($batchSize = 0)
{
$this->batchSize = (integer) $batchSize;
}
/**
* @param MessageInterface $message
* @param AdapterInterface $adapter
* @param mixed $result
*/
protected function acknowledge(
MessageInterface $message,
AdapterInterface $adapter,
$result = null
) {
$this->acknowledged[] = $message;
if (count($this->acknowledged) === $this->batchSize) {
$this->flush($adapter);
}
}
/**
* @param MessageInterface $message
* @param AdapterInterface $adapter
* @param int $duration
*/
protected function extend(
MessageInterface $message,
AdapterInterface $adapter,
$duration
) {
$this->delayed[$duration][] = $message;
if (count($this->delayed[$duration]) === $this->batchSize) {
$this->flush($adapter);
}
}
/**
* @param MessageInterface $message
* @param AdapterInterface $adapter
* @param mixed $result
*/
protected function reject(
MessageInterface $message,
AdapterInterface $adapter,
$result = null
) {
$this->rejected[] = $message;
if (count($this->rejected) === $this->batchSize) {
$this->flush($adapter);
}
}
/**
* @param AdapterInterface $adapter
*/
protected function flush(AdapterInterface $adapter)
{
if (!empty($this->acknowledged)) {
$adapter->acknowledge($this->acknowledged);
$this->acknowledged = [];
}
if (!empty($this->rejected)) {
$adapter->acknowledge($this->rejected);
$this->rejected = [];
}
if (!empty($this->delayed)) {
foreach ($this->delayed as $duration => $messages) {
$adapter->extend($messages, $duration);
}
$this->delayed = [];
}
}
}