Package com.sirenian.hellbound.engine

Examples of com.sirenian.hellbound.engine.EngineQueue.waitForIdle()


    private void waitForAllQueuesToEmpty(World world) {
      Logger.debug(this, "Waiting for all queues to empty.");
        EngineQueue engineQueue = (ThreadedEngineQueue) world.get(WorldKey.ENGINE_QUEUE, null);
        GuiQueue guiQueue = (ThreadedSwingQueue) world.get(WorldKey.GUI_QUEUE, null);
       
        engineQueue.waitForIdle();
        guiQueue.waitForIdle();
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.