Package com.tommytony.war.job

Examples of com.tommytony.war.job.ZoneVolumeSaveJob


   * @param War
   *                war Instance of war
   * @param long tickDelay delay before beginning the task
   */
  private static void saveAsJob(ZoneVolume volume, String zoneName, long tickDelay) {
    ZoneVolumeSaveJob job = new ZoneVolumeSaveJob(volume, zoneName);
    War.war.getServer().getScheduler().scheduleSyncDelayedTask(War.war, job, tickDelay);
  }
View Full Code Here

TOP

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

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.