Examples of LobbyTimerTask


Examples of de.creepsmash.client.util.LobbyTimerTask

   * Resets the inactive timer to 30 minutes.
   */
  public void resetLobbyTimer() {
    this.inactiveTimerTask.cancel();
    this.inactiveTimer.purge();
    this.inactiveTimerTask = new LobbyTimerTask(this);

    this.inactiveTimer.schedule(this.inactiveTimerTask,
        1000 * 60 * 30);
  }
 
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.