Package com.tommytony.war.job

Examples of com.tommytony.war.job.SpoutFadeOutMessageJob


    // Start tasks
    HelmetProtectionTask helmetProtectionTask = new HelmetProtectionTask();
    this.getServer().getScheduler().scheduleSyncRepeatingTask(this, helmetProtectionTask, 250, 100);
   
    if (this.isSpoutServer) {
      SpoutFadeOutMessageJob fadeOutMessagesTask = new SpoutFadeOutMessageJob();
      this.getServer().getScheduler().scheduleSyncRepeatingTask(this, fadeOutMessagesTask, 100, 100);
    }
    if (this.mysqlConfig.isEnabled()) {
      try {
        Class.forName("com.mysql.jdbc.Driver").newInstance();
View Full Code Here

TOP

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

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.