]> git.mxchange.org Git - friendica.git/blob - src/Core/Worker/Entity/Process.php
Fix worker priorities
[friendica.git] / src / Core / Worker / Entity / Process.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Core\Worker\Entity;
23
24 use DateTime;
25 use Friendica\BaseEntity;
26
27 /**
28  * @property-read int $pid
29  * @property-read string $command
30  * @property-read string $hostname
31  * @property-read DateTime $created
32  */
33 class Process extends BaseEntity
34 {
35         /** @var int */
36         protected $pid;
37         /** @var string */
38         protected $command;
39         /** @var string */
40         protected $hostname;
41         /** @var DateTime */
42         protected $created;
43
44         /**
45          * @param int      $pid
46          * @param string   $command
47          * @param string   $hostname
48          * @param DateTime $created
49          */
50         public function __construct(int $pid, string $command, string $hostname, DateTime $created)
51         {
52                 $this->pid      = $pid;
53                 $this->command  = $command;
54                 $this->hostname = $hostname;
55                 $this->created  = $created;
56         }
57 }