2013-05-03 18:42:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2013-05-03 18:42:48 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-05-03 18:42:48 +04:00
|
|
|
namespace OC\BackgroundJob\Legacy;
|
|
|
|
|
|
|
|
class QueuedJob extends \OC\BackgroundJob\QueuedJob {
|
|
|
|
public function run($argument) {
|
|
|
|
$class = $argument['klass'];
|
|
|
|
$method = $argument['method'];
|
|
|
|
$parameters = $argument['parameters'];
|
2014-06-27 00:39:40 +04:00
|
|
|
if (is_callable(array($class, $method))) {
|
|
|
|
call_user_func(array($class, $method), $parameters);
|
|
|
|
}
|
2013-05-03 18:42:48 +04:00
|
|
|
}
|
|
|
|
}
|