Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
PriorityMode | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | /** |
3 | * Jingga |
4 | * |
5 | * PHP Version 8.1 |
6 | * |
7 | * @package phpOMS\Scheduling |
8 | * @copyright Dennis Eichhorn |
9 | * @license OMS License 2.0 |
10 | * @version 1.0.0 |
11 | * @link https://jingga.app |
12 | */ |
13 | declare(strict_types=1); |
14 | |
15 | namespace phpOMS\Scheduling; |
16 | |
17 | use phpOMS\Stdlib\Base\Enum; |
18 | |
19 | /** |
20 | * Priority type enum. |
21 | * |
22 | * Defines the different priorities in which elements from the queue can be extracted. |
23 | * |
24 | * @package phpOMS\Scheduling |
25 | * @license OMS License 2.0 |
26 | * @link https://jingga.app |
27 | * @since 1.0.0 |
28 | */ |
29 | abstract class PriorityMode extends Enum |
30 | { |
31 | public const FIFO = 1; // First in first out |
32 | |
33 | public const LIFO = 2; // Last in first out |
34 | |
35 | public const PRIORITY = 4; |
36 | |
37 | public const VALUE = 8; |
38 | |
39 | public const COST = 16; |
40 | |
41 | public const PROFIT = 32; |
42 | |
43 | public const HOLD = 64; // Longest on hold |
44 | |
45 | public const EARLIEST_DEADLINE = 128; // EDF |
46 | } |