phpOMS/Algorithm/JobScheduling/JobInterface.php

64 lines
1.0 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package phpOMS\Algorithm\JobScheduling
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace phpOMS\Algorithm\JobScheduling;
/**
* Job interface.
*
* @package phpOMS\Algorithm\JobScheduling;
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
interface JobInterface
{
/**
* Get value of the job
*
* @return float
*
* @since 1.0.0
*/
public function getValue() : float;
/**
* Get start time of the job
*
* @return \DateTime
*
* @since 1.0.0
*/
public function getStart() : \DateTime;
/**
* Get end time of the job
*
* @return \DateTime
*
* @since 1.0.0
*/
public function getEnd() : ?\DateTime;
/**
* Get the name of the job
*
* @return string
*
* @since 1.0.0
*/
public function getName() : string;
}