-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStatus.php
86 lines (72 loc) · 1.6 KB
/
Status.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
<?php
declare(strict_types=1);
namespace Simple\Queue;
use function in_array;
use InvalidArgumentException;
/**
* Class Status
* @package Simple\Queue
*/
class Status
{
/**
* Set for a new message
*/
public const NEW = 'NEW';
/**
* Set for a message that is being processed
*/
public const IN_PROCESS = 'IN_PROCESS';
/**
* Set for a message for which an error occurred
*/
public const FAILURE = 'FAILURE';
/**
* Set for a message to be redelivered to the queue
*/
public const REDELIVERED = 'REDELIVERED';
/**
* Set for a message if there is no processor or job
*/
public const UNDEFINED_HANDLER = 'UNDEFINED_HANDLER';
/** @var string */
private string $status;
/**
* Status constructor.
* @param string $value
*/
public function __construct(string $value)
{
if (in_array($value, self::getStatuses(), true) === false) {
throw new InvalidArgumentException(sprintf('"%s" is not a valid message status.', $value));
}
$this->status = $value;
}
/**
* @return string
*/
public function __toString(): string
{
return $this->status;
}
/**
* @return string
*/
public function getValue(): string
{
return $this->status;
}
/**
* @return array
*/
public static function getStatuses(): array
{
return [
self::NEW,
self::IN_PROCESS,
self::FAILURE,
self::REDELIVERED,
self::UNDEFINED_HANDLER,
];
}
}