getInstance() 공개 정적인 메소드

public static getInstance ( ) : ThreadManager
리턴 ThreadManager
예제 #1
0
 public function onDisable()
 {
     $this->getLogger()->info(TextFormat::DARK_RED . "Disabled");
     $this->getServer()->getLogger()->removeAttachment($this->attachment);
     ThreadManager::getInstance()->remove($this->thread);
     $this->thread->kill();
 }
예제 #2
0
        //Found Git information!
        \define("pocketmine\\GIT_COMMIT", \strtolower(\trim(\file_get_contents(\pocketmine\PATH . ".git/refs/heads/master"))));
    } else {
        //Unknown :(
        \define("pocketmine\\GIT_COMMIT", \str_repeat("00", 20));
    }
    @\define("ENDIANNESS", \pack("d", 1) === "?ð" ? Binary::BIG_ENDIAN : Binary::LITTLE_ENDIAN);
    @\define("INT32_MASK", \is_int(4294967295.0) ? 4294967295.0 : -1);
    @\ini_set("opcache.mmap_base", \bin2hex(Utils::getRandomBytes(8, \false)));
    //Fix OPCache address errors
    if (!\file_exists(\pocketmine\DATA . "server.properties") and !isset($opts["no-wizard"])) {
        new Installer();
    }
    if (\Phar::running(\true) === "") {
        $logger->warning("Non-packaged PocketMine-MP installation detected, do not use on production.");
    }
    ThreadManager::init();
    $server = new Server($autoloader, $logger, \pocketmine\PATH, \pocketmine\DATA, \pocketmine\PLUGIN_PATH);
    $logger->info("Stopping other threads");
    foreach (ThreadManager::getInstance()->getAll() as $id => $thread) {
        $logger->debug("Stopping " . (new \ReflectionClass($thread))->getShortName() . " thread");
        $thread->quit();
    }
    $killer = new ServerKiller(8);
    $killer->start();
    $killer->detach();
    $logger->shutdown();
    $logger->join();
    echo Terminal::$FORMAT_RESET . "\n";
    exit(0);
}
예제 #3
0
 public static function getThreadCount()
 {
     if (Utils::getOS() === "linux" or Utils::getOS() === "android") {
         if (preg_match("/Threads:[ \t]+([0-9]+)/", file_get_contents("/proc/self/status"), $matches) > 0) {
             return (int) $matches[1];
         }
     }
     //TODO: more OS
     return count(ThreadManager::getInstance()->getAll()) + 3;
     //RakLib + MainLogger + Main Thread
 }