mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-15 18:29:46 +00:00
106 lines
2.1 KiB
PHP
106 lines
2.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
*
|
|
* ____ _ _ __ __ _ __ __ ____
|
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* @author PocketMine Team
|
|
|
|
*
|
|
*
|
|
*/
|
|
|
|
namespace pocketmine\scheduler;
|
|
|
|
use pocketmine\Server;
|
|
|
|
/**
|
|
* Class used to run async tasks in other threads.
|
|
*
|
|
* WARNING: Do not call PocketMine-MP API methods, or save objects from/on other Threads!!
|
|
*/
|
|
abstract class AsyncTask extends \Collectable{
|
|
|
|
private $result = null;
|
|
private $serialized = false;
|
|
/** @var int */
|
|
private $taskId = null;
|
|
|
|
public function run(){
|
|
$this->result = null;
|
|
|
|
$this->onRun();
|
|
|
|
$this->setGarbage();
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function isFinished(){
|
|
return $this->isGarbage();
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getResult(){
|
|
return $this->serialized ? unserialize($this->result) : $this->result;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function hasResult(){
|
|
return $this->result !== null;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $result
|
|
* @param bool $serialize
|
|
*/
|
|
public function setResult($result, $serialize = true){
|
|
$this->result = $serialize ? serialize($result) : $result;
|
|
$this->serialized = $serialize;
|
|
}
|
|
|
|
public function setTaskId($taskId){
|
|
$this->taskId = $taskId;
|
|
}
|
|
|
|
public function getTaskId(){
|
|
return $this->taskId;
|
|
}
|
|
|
|
/**
|
|
* Actions to execute when run
|
|
*
|
|
* @return void
|
|
*/
|
|
public abstract function onRun();
|
|
|
|
/**
|
|
* Actions to execute when completed (on main thread)
|
|
* Implement this if you want to handle the data in your AsyncTask after it has been processed
|
|
*
|
|
* @param Server $server
|
|
*
|
|
* @return void
|
|
*/
|
|
public function onCompletion(Server $server){
|
|
|
|
}
|
|
|
|
}
|