2014-02-11 17:00:24 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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/>
|
|
|
|
*
|
2014-02-11 17:00:24 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-02-11 17:00:24 +04:00
|
|
|
namespace OCP\BackgroundJob;
|
2015-04-30 12:52:30 +03:00
|
|
|
use OCP\ILogger;
|
2014-02-11 17:00:24 +04:00
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Interface IJob
|
|
|
|
*
|
|
|
|
* @package OCP\BackgroundJob
|
|
|
|
* @since 7.0.0
|
|
|
|
*/
|
2014-02-11 17:00:24 +04:00
|
|
|
interface IJob {
|
|
|
|
/**
|
2014-02-12 16:32:16 +04:00
|
|
|
* Run the background job with the registered argument
|
|
|
|
*
|
|
|
|
* @param \OCP\BackgroundJob\IJobList $jobList The job list that manages the state of this job
|
2015-04-30 12:52:30 +03:00
|
|
|
* @param ILogger $logger
|
2014-02-19 12:31:54 +04:00
|
|
|
* @return void
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-11 17:00:24 +04:00
|
|
|
*/
|
2015-04-30 12:52:30 +03:00
|
|
|
public function execute($jobList, ILogger $logger = null);
|
2014-02-11 17:00:24 +04:00
|
|
|
|
2014-02-12 16:32:16 +04:00
|
|
|
/**
|
|
|
|
* 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
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-12 16:32:16 +04:00
|
|
|
*/
|
2014-02-11 17:00:24 +04:00
|
|
|
public function getId();
|
|
|
|
|
2014-02-12 16:32:16 +04:00
|
|
|
/**
|
|
|
|
* Get the last time this job was run as unix timestamp
|
|
|
|
*
|
|
|
|
* @return int
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-12 16:32:16 +04:00
|
|
|
*/
|
2014-02-11 17:00:24 +04:00
|
|
|
public function getLastRun();
|
|
|
|
|
2014-02-12 16:32:16 +04:00
|
|
|
/**
|
|
|
|
* Get the argument associated with the background job
|
|
|
|
* This is the argument that will be passed to the background job
|
|
|
|
*
|
|
|
|
* @return mixed
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 7.0.0
|
2014-02-12 16:32:16 +04:00
|
|
|
*/
|
2014-02-11 17:00:24 +04:00
|
|
|
public function getArgument();
|
|
|
|
}
|