2014-02-11 17:00:24 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
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;
|
|
|
|
|
|
|
|
interface IJobList {
|
|
|
|
/**
|
2014-02-12 16:32:16 +04:00
|
|
|
* Add a job to the list
|
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param \OCP\BackgroundJob\IJob|string $job
|
2014-02-12 16:32:16 +04:00
|
|
|
* @param mixed $argument The argument to be passed to $job->run() when the job is exectured
|
2014-02-19 12:31:54 +04:00
|
|
|
* @param string $job
|
|
|
|
* @return void
|
2014-02-11 17:00:24 +04:00
|
|
|
*/
|
|
|
|
public function add($job, $argument = null);
|
|
|
|
|
|
|
|
/**
|
2014-02-12 16:32:16 +04:00
|
|
|
* Remove a job from the list
|
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param \OCP\BackgroundJob\IJob|string $job
|
2014-02-11 17:00:24 +04:00
|
|
|
* @param mixed $argument
|
2014-02-19 12:31:54 +04:00
|
|
|
* @return void
|
2014-02-11 17:00:24 +04:00
|
|
|
*/
|
|
|
|
public function remove($job, $argument = null);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check if a job is in the list
|
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param \OCP\BackgroundJob\IJob|string $job
|
2014-02-11 17:00:24 +04:00
|
|
|
* @param mixed $argument
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function has($job, $argument);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get all jobs in the list
|
|
|
|
*
|
|
|
|
* @return \OCP\BackgroundJob\IJob[]
|
|
|
|
*/
|
|
|
|
public function getAll();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the next job in the list
|
|
|
|
*
|
|
|
|
* @return \OCP\BackgroundJob\IJob
|
|
|
|
*/
|
|
|
|
public function getNext();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
* @return \OCP\BackgroundJob\IJob
|
|
|
|
*/
|
|
|
|
public function getById($id);
|
|
|
|
|
|
|
|
/**
|
2014-02-12 16:32:16 +04:00
|
|
|
* set the job that was last ran to the current time
|
2014-02-11 17:00:24 +04:00
|
|
|
*
|
|
|
|
* @param \OCP\BackgroundJob\IJob $job
|
2014-02-19 12:31:54 +04:00
|
|
|
* @return void
|
2014-02-11 17:00:24 +04:00
|
|
|
*/
|
|
|
|
public function setLastJob($job);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the id of the last ran job
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getLastJob();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the lastRun of $job to now
|
|
|
|
*
|
|
|
|
* @param \OCP\BackgroundJob\IJob $job
|
2014-02-19 12:31:54 +04:00
|
|
|
* @return void
|
2014-02-11 17:00:24 +04:00
|
|
|
*/
|
|
|
|
public function setLastRun($job);
|
|
|
|
}
|