searchcode-server icon indicating copy to clipboard operation
searchcode-server copied to clipboard

Add shutdown hook

Open boyter opened this issue 8 years ago • 0 comments

Should add a shutdown hook allowing as clean as possible termination of the application. Java 8 makes this pretty easy,

Runtime.getRuntime().addShutdownHook(new Thread(() -> {
     // Do stuff in here
 }));

Example, http://stackoverflow.com/questions/37696588/java-8-and-lambdas-in-shutdown-hook#37696655

Need to implement https://github.com/boyter/searchcode-server/issues/41 first though.

boyter avatar Feb 19 '17 21:02 boyter