* @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ declare(strict_types=1); namespace phpOMS\Stdlib\Queue; use phpOMS\Datatypes\Enum; /** * Account type enum. * * @category Framework * @package phpOMS\Stdlib * @author OMS Development Team * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ abstract class PriorityMode extends Enum { /* public */ const FIFO = 1; /* public */ const LIFO = 2; /* public */ const EARLIEST_DEADLINE = 4; /* public */ const SHORTEST_JOB = 8; /* public */ const HIGHEST = 16; /* public */ const LOWEST = 32; }