diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-26 08:47:26 +0200 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-04-26 08:47:26 +0200 |
commit | 6b5db081a55b9a7675e30a9c43950f412420bcd7 (patch) | |
tree | 808ccc7efc0f5c313472f16c5779323f41984dc9 /lib/private/BackgroundJob/QueuedJob.php | |
parent | 0241f7f02cc7249534a03f7d5d5e984bee0b25cb (diff) | |
download | nextcloud-server-6b5db081a55b9a7675e30a9c43950f412420bcd7.tar.gz nextcloud-server-6b5db081a55b9a7675e30a9c43950f412420bcd7.zip |
Move \OC\BackgroundJob to PSR-4
Diffstat (limited to 'lib/private/BackgroundJob/QueuedJob.php')
-rw-r--r-- | lib/private/BackgroundJob/QueuedJob.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/private/BackgroundJob/QueuedJob.php b/lib/private/BackgroundJob/QueuedJob.php new file mode 100644 index 00000000000..bf34db7cc02 --- /dev/null +++ b/lib/private/BackgroundJob/QueuedJob.php @@ -0,0 +1,44 @@ +<?php +/** + * @author Morris Jobke <hey@morrisjobke.de> + * @author Robin Appelman <icewind@owncloud.com> + * + * @copyright Copyright (c) 2016, 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/> + * + */ + +namespace OC\BackgroundJob; +use OCP\ILogger; + +/** + * Class QueuedJob + * + * create a background job that is to be executed once + * + * @package OC\BackgroundJob + */ +abstract class QueuedJob extends Job { + /** + * run the job, then remove it from the joblist + * + * @param JobList $jobList + * @param ILogger $logger + */ + public function execute($jobList, ILogger $logger = null) { + $jobList->remove($this, $this->argument); + parent::execute($jobList, $logger); + } +} |