{{theTime}}

Search This Blog

Total Pageviews

How to add shutdown hook control c in Java

// Attach shutdown handler to catch control-c
        Runtime.getRuntime().addShutdownHook(new Thread("control c shutdown--hook") {
            @Override
            public void run() {
                  //Save and close if any object state require persistence.
            }
        });

No comments:

How to install Windows Subsystem for Linux?

- Open Powershell in Admin mode and run wsl --install