Oct 01
|
Use shutdown hook thread.
Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { // this will get called on shutdown shutdownCleanup(); } });
CategoriesArchives
|
Use shutdown hook thread. Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { // this will get called on shutdown shutdownCleanup(); } }); |
|