当前位置: 首页>>代码示例>>Java>>正文


Java Timings.stopServer方法代码示例

本文整理汇总了Java中co.aikar.timings.Timings.stopServer方法的典型用法代码示例。如果您正苦于以下问题:Java Timings.stopServer方法的具体用法?Java Timings.stopServer怎么用?Java Timings.stopServer使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在co.aikar.timings.Timings的用法示例。


在下文中一共展示了Timings.stopServer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: shutdown

import co.aikar.timings.Timings; //导入方法依赖的package包/类
public void shutdown() {
    logger.info(lang.get(Lang.SHUTTING_DOWN));

    debug = false;
    this.shuttingDown = true;
    network.shutdown();
    try {
        Thread.sleep(2000); // Wait for all clients disconnected
    } catch (Exception ex) {
        System.out.println("Exception while shutting down!");
        ex.printStackTrace();
    }
    Timings.stopServer();
    System.out.println("Goodbye!");
    System.exit(0);
}
 
开发者ID:DragonetMC,项目名称:DragonProxy,代码行数:17,代码来源:DragonProxy.java

示例2: forceShutdown

import co.aikar.timings.Timings; //导入方法依赖的package包/类
public void forceShutdown() {
    if (this.hasStopped) {
        return;
    }

    try {
        if (!this.isRunning) {
            //todo sendUsage
        }

        // clean shutdown of console thread asap
        this.console.shutdown();

        this.hasStopped = true;

        this.shutdown();

        if (this.rcon != null) {
            this.rcon.close();
        }

        this.getLogger().debug("Disabling all plugins");
        this.pluginManager.disablePlugins();

        for (Player player : new ArrayList<>(this.players.values())) {
            player.close(player.getLeaveMessage(), (String) this.getConfig("settings.shutdown-message", "Server closed"));
        }

        this.getLogger().debug("Unloading all levels");
        for (Level level : new ArrayList<>(this.getLevels().values())) {
            this.unloadLevel(level, true);
        }

        this.getLogger().debug("Removing event handlers");
        HandlerList.unregisterAll();

        this.getLogger().debug("Stopping all tasks");
        this.scheduler.cancelAllTasks();
        this.scheduler.mainThreadHeartbeat(Integer.MAX_VALUE);

        this.getLogger().debug("Closing console");
        this.console.interrupt();

        this.getLogger().debug("Stopping network interfaces");
        for (SourceInterface interfaz : this.network.getInterfaces()) {
            interfaz.shutdown();
            this.network.unregisterInterface(interfaz);
        }

        this.getLogger().debug("Disabling timings");
        Timings.stopServer();
        //todo other things
    } catch (Exception e) {
        this.logger.logException(e); //todo remove this?
        this.logger.emergency("Exception happened while shutting down, exit the process");
        System.exit(1);
    }
}
 
开发者ID:Rsplwe,项目名称:Nukkit-Java9,代码行数:59,代码来源:Server.java


注:本文中的co.aikar.timings.Timings.stopServer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。