Package org.saf.shutdownhook

Examples of org.saf.shutdownhook.ShutdownHook


 
  private void init() {
    this.applicationChecker = new ApplicationChecker(this);
    this.applicationCheckerThread =
      new Thread(this.applicationChecker, "memory checker");
    this.shutdownHook = new ShutdownHook()
    this.shutdownHook.addShutdownHookListener(this);
    this.shutdownHook.addShutdownHookListener(this.applicationChecker);
    this.shutdownHookThread =
      new Thread(shutdownHook, SHUTDOWN_HOOK_NAME);
  }
View Full Code Here

TOP

Related Classes of org.saf.shutdownhook.ShutdownHook

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.