Package l2p.gameserver.idfactory

Examples of l2p.gameserver.idfactory.IdFactory


    public GameServer() throws Exception {
        Server.gameServer = this;
        _serverStarted = time();
        _log.finest("used mem:" + MemoryWatchDog.getMemUsedMb());
        Strings.reload();
        IdFactory _idFactory = IdFactory.getInstance();
        if (!_idFactory.isInitialized()) {
            _log.severe("Could not read object IDs from DB. Please Check Your Data.");
            throw new Exception("Could not initialize the ID factory");
        }
        ThreadPoolManager.getInstance();
        if (Config.DEADLOCKCHECK_INTERVAL > 0) {
View Full Code Here

TOP

Related Classes of l2p.gameserver.idfactory.IdFactory

Copyright © 2018 www.massapicom. 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.