Package com.tommytony.war.job

Examples of com.tommytony.war.job.RestoreWarhubJob


    }

    // warhub
    String hubStr = warConfig.getString("warhub");
    if (hubStr != null && !hubStr.equals("")) {
      RestoreWarhubJob restoreWarhub = new RestoreWarhubJob(hubStr);
      if (War.war.getServer().getScheduler().scheduleSyncDelayedTask(War.war, restoreWarhub) == -1) {
        War.war.log("Failed to schedule warhub-restore job. War hub was not loaded.", Level.WARNING);
      }
    }
View Full Code Here

TOP

Related Classes of com.tommytony.war.job.RestoreWarhubJob

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.