Skip to content

Instantly share code, notes, and snippets.

@Kaushal28
Created July 15, 2019 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaushal28/0a652b0d5f157638939b9b246f31bc0f to your computer and use it in GitHub Desktop.
Save Kaushal28/0a652b0d5f157638939b9b246f31bc0f to your computer and use it in GitHub Desktop.
class ShutDownHookExample {
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
System.out.println("Shutdown hook is running.");
}
});
System.out.println("Application terminating.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment