Examples of runTaskAsynchronously()


Examples of org.bukkit.scheduler.BukkitRunnable.runTaskAsynchronously()

      @Override public void run()
      { try { getZip(); } catch (IOException e) { e.printStackTrace(); } }
    };

    // run the task asynchronously to avoid locking up the main thread on a download
    runnable.runTaskAsynchronously(AutoReferee.getInstance());
  }

  @Override
  public int hashCode()
  { return name.toLowerCase().hashCode(); }
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.