]> source.dussan.org Git - nextcloud-server.git/commitdiff
Removed depreacted functions (since 6.0)
authorRoeland Jago Douma <roeland@famdouma.nl>
Sat, 29 Oct 2016 12:26:55 +0000 (14:26 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Sat, 29 Oct 2016 12:27:12 +0000 (14:27 +0200)
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
lib/public/BackgroundJob.php

index b49dd9227866bbcd8c5c159967a7d1a6a68b13fb..43f445362dcd622553c5c20f22816032c1866fcd 100644 (file)
@@ -90,96 +90,4 @@ class BackgroundJob {
                $jobList = \OC::$server->getJobList();
                $jobList->add($job, $argument);
        }
-
-       /**
-        * @deprecated 6.0.0
-        * creates a regular task
-        * @param string $klass class name
-        * @param string $method method name
-        * @return boolean|null
-        * @since 4.5.0
-        */
-       public static function addRegularTask($klass, $method) {
-               if (!\OCP\Util::needUpgrade()) {
-                       self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method));
-                       return true;
-               }
-       }
-
-       /**
-        * @deprecated 6.0.0
-        * gets all regular tasks
-        * @return array
-        *
-        * key is string "$klass-$method", value is array( $klass, $method )
-        * @since 4.5.0
-        */
-       static public function allRegularTasks() {
-               return [];
-       }
-
-       /**
-        * @deprecated 6.0.0
-        * Gets one queued task
-        * @param int $id ID of the task
-        * @return BackgroundJob\IJob|null
-        * @since 4.5.0
-        */
-       public static function findQueuedTask($id) {
-               $jobList = \OC::$server->getJobList();
-               return $jobList->getById($id);
-       }
-
-       /**
-        * @deprecated 6.0.0
-        * Gets all queued tasks
-        * @return array an array of associative arrays
-        * @since 4.5.0
-        */
-       public static function allQueuedTasks() {
-               return [];
-       }
-
-       /**
-        * @deprecated 6.0.0
-        * Gets all queued tasks of a specific app
-        * @param string $app app name
-        * @return array an array of associative arrays
-        * @since 4.5.0
-        */
-       public static function queuedTaskWhereAppIs($app) {
-               return [];
-       }
-
-       /**
-        * @deprecated 6.0.0
-        * queues a task
-        * @param string $app app name
-        * @param string $class class name
-        * @param string $method method name
-        * @param string $parameters all useful data as text
-        * @return boolean id of task
-        * @since 4.5.0
-        */
-       public static function addQueuedTask($app, $class, $method, $parameters) {
-               self::registerJob('OC\BackgroundJob\Legacy\QueuedJob', array('app' => $app, 'klass' => $class, 'method' => $method, 'parameters' => $parameters));
-               return true;
-       }
-
-       /**
-        * @deprecated 6.0.0
-        * deletes a queued task
-        * @param int $id id of task
-        * @return boolean|null
-        *
-        * Deletes a report
-        * @since 4.5.0
-        */
-       public static function deleteQueuedTask($id) {
-               $jobList = \OC::$server->getJobList();
-               $job = $jobList->getById($id);
-               if ($job) {
-                       $jobList->remove($job);
-               }
-       }
 }