Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
lib /
public /
BackgroundJob /
Delete
Unzip
Name
Size
Permission
Date
Action
IJob.php
2
KB
-rw-r--r--
2018-04-19 18:15
IJobList.php
3.06
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Joas Schilling <coding@schilljs.com> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <icewind@owncloud.com> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OCP\BackgroundJob; use OCP\ILogger; /** * Interface IJob * * @package OCP\BackgroundJob * @since 7.0.0 */ interface IJob { /** * Run the background job with the registered argument * * @param \OCP\BackgroundJob\IJobList $jobList The job list that manages the state of this job * @param ILogger $logger * @since 7.0.0 */ public function execute($jobList, ILogger $logger = null); /** * @param int $id * @since 7.0.0 */ public function setId($id); /** * @param int $lastRun * @since 7.0.0 */ public function setLastRun($lastRun); /** * @param mixed $argument * @since 7.0.0 */ public function setArgument($argument); /** * Get the id of the background job * This id is determined by the job list when a job is added to the list * * @return int * @since 7.0.0 */ public function getId(); /** * Get the last time this job was run as unix timestamp * * @return int * @since 7.0.0 */ public function getLastRun(); /** * Get the argument associated with the background job * This is the argument that will be passed to the background job * * @return mixed * @since 7.0.0 */ public function getArgument(); }