Skip to content

Instantly share code, notes, and snippets.

@marchof
Created April 11, 2016 17:09
Show Gist options
  • Save marchof/9e439d5b766311276016cadcca23cefc to your computer and use it in GitHub Desktop.
Save marchof/9e439d5b766311276016cadcca23cefc to your computer and use it in GitHub Desktop.
JVM Shutdown
public class Shutdown {
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
System.out.println("Shutdown Hook");
}
});
Thread.currentThread().interrupt();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment