A shutdown hook is simply an initialized but unstarted thread. When the virtual machine begins its shutdown sequence it will start all registered shutdown hooks in some unspecified order and let them run concurrently.

learn more… | top users | synonyms

3
votes
1answer
49 views

What are the best practices to manage an ExecutorService in a library?

In one of my libraries, I use a fixed thread pool executor with 5 threads; my threads are not heavyweight, I .get() with timeouts, but as to the ExecutorService, I create it and after that, this is ...
0
votes
1answer
19 views

Alternative to nohup when input user is requested

I've got a java application which is started with a nohup command. Now the stop command is just a kill -15 of that application. This application is a file parsing and write to db application and it ...
-2
votes
5answers
65 views

Shutdownhook in Java

I want to write the system shutdown time to a txt file. I am using the shutdownhook thread. I have written the file writing mechanism in the run method of the thread. But it is not working.. This is ...
-2
votes
1answer
142 views

Shutdown hook is not printing to console in JUnit Test executed via Maven

I have a simple JUnit test which is ran by Maven through a method marked by @Test annotation. I want to place the shutdown hook into that test because I want to print some test results if the user ...
3
votes
1answer
92 views

Why won't this shutdownhook work?

This is my main method and it contains a shutdownhook: public static void main(String args[]) { Runtime.getRuntime().addShutdownHook(new Thread() { @Override public void run() { ...
0
votes
0answers
94 views

addShutdownHook not working on Mac without JDK

Ok, so I've got a shutdown hook I'm using to run an external updater after closing a program. The hook works as intended on PCs and Macs that have the JDK, but it will not work on Macs that just have ...
0
votes
0answers
190 views

How to abort normal shutdown in Windows Server 2012 from a script?

I am using an experimental "Software RAID" on my Windows Server 2012. For various reason, the server has better not be shutdowned while there are processes related to that SoftwareRAID currently ...
0
votes
1answer
307 views

Java Force Close Program

How can I programatically force close the program upon exit. I've added the shutdown hook which calls a System.exit(0) but it seems to have problems executing that. The javaw.exe process keeps running ...
0
votes
2answers
302 views

Java -How to get logger to work in shutdown hook?

I have a specialized logger class which uses the java.util.logging.Logger class. I want to be able to use this logger in the shutdown hook of another class. However, it seems does not log at ...
2
votes
2answers
116 views

What happens when an exception is thrown inside a shutdown hook in java

If an uncaught exception is thrown during the execution of a shutdown hook in java, does the jvm exit immediately without running the rest of the registered shutdown hooks (if any)? From the javadocs: ...
3
votes
4answers
133 views

How to ensure a piece of code is run before exiting a java application

I'm using a licensed API which has a method to acquire/release a license object from a license server that has a finite number of licenses. At the beginning of my application, I call the method to ...
0
votes
1answer
145 views

iOS 5 - shutdown hook

I would like to perform certain cleanup tasks when the app shuts down. I use an observer like: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillResignActiveNotif:) ...
0
votes
1answer
106 views

Any module to start, shutdown Java process (like Jetty start.jar)?

Most servers like Jetty or Weblogic provide some sort of mechanism to start or shutdown the server via a call (sometimes over jmx). Can always to keep stuff running from main: public static void ...
6
votes
3answers
353 views

java shutdown hook with more than one thread

I am trying to get a shutdown hook to work on my ubuntu server, however I seem to have an issue with more than one thread. Using the a basic ShutdownHook, the following bit of code does work when I ...
4
votes
2answers
300 views

Shutdown hook from UNIX

I am trying to get my Java program to exit gracefully on my unix server. I have a jar file, which I start through a cron job in the morning. Then in the evening, when I want to shut it down, I have ...
4
votes
2answers
454 views

ShutdownHook in eclipse

Runtime.getRuntime().addShutdownHook(myShutdownHook); Anyone found a way to make ShutdownHook to work in eclipse once the red stop button clicked? My hook is working fine in runtime, but not in ...
0
votes
0answers
52 views

Implementing some functionality on aborting/stopping the project in Netbeans

I have made a project in Netbeans which takes a huge amount of time. Mostly I have to terminate it externally. I want some task to be done when I abort/stop the running of project myself externally in ...
1
vote
2answers
190 views

shutdown hook won't start upon ^C (scala)

i'm trying to get a clean and gracefull shutdown, and for some reason, it wont execute. iv'e tried: sys addShutdownHook{ logger.warn("SHUTTING DOWN...") // irrelevant logic here... } and ...
2
votes
1answer
339 views

How to gracefully stop Guava AbstractScheduledService using a shutdown hook?

I am using an AbstractScheduledService with a scheduler. A simple pattern like: class MyService extends AbstractScheduledService { // KEEP THIS VAR IN MIND W.R.T the SHUTDOWN_HOOK BELOW ...
4
votes
1answer
283 views

Cygwin CTRL-C (Signal Interrupts) not working properly - JVM Shutdown Hooks not starting

I'm working on a Java application that utilises shutdown hooks in order to clean up on termination/interruption of the program, but I've noticed that Cygwin's implementation of CTRL-C doesn't seem to ...
1
vote
2answers
405 views

interrupt all threads in Java in shutdown hook

I have a simple java program that creates a series of temporary files stored in a local tmp directory. I have added a simple shutdown hook that walks through all files and deletes them, then deletes ...
4
votes
2answers
1k views

How does CTRL-C work with Java program

When I press ctrl-c in console in what sequence are application threads stopped and shutdown hooks called?
1
vote
1answer
128 views

Java/Scala shutdown hook -noclassdeffounderror

I have a multithreaded Scala application and I have a shutdown hook that calls a shutdown() method on an object. Unfortunately this doesn't seem to be reliable. Many times it fails to handle SIGINT ...
0
votes
2answers
199 views

Simulate CTRL-C to shutdown Java application on C#

I founded some code to correctly shutdown java application from C# console application, using InputSimulator but when i tried it, it didnt give me an expected result. When i close my java ...
1
vote
1answer
274 views

How to shutdown java application correctly from C# one

I have java application which shutdowns correctly when i use CTRL-C, java application saves all data before shutdown. Now i trying to shutdown this java application from my C# console application ...
2
votes
1answer
300 views

shutdown hook doesn't fire when running with “lein run”

I have the following code: (ns test-hook.core) (defn -main [] (.addShutdownHook (Runtime/getRuntime) (Thread. #(println "shutdown"))) (println "start") (doseq [i (range 1 6)] (Thread/sleep ...
1
vote
1answer
201 views

How to hook NTShutdownSystem in C# in order to differentiate between shutdown and reboot

unfortunatly, when you listen to WM_QUERYENDSESSION, you do not get the information if the user has requested a reboot or a shutdown. This is really bad design, but it's the way Windows is, so I was ...
0
votes
1answer
47 views

Is it possible to collect information about a running .jar file when it exits?

is it possible to gather information on all the existing variables within a running .jar file when it exits? I'm running an application on the linux command line of various servers and I try to debug ...
2
votes
0answers
285 views

How do you detect the Windows XPe shutdown reason in Delphi?

I'm correctly intercepting the Windows shutdown message WMQueryEndSession in Delphi 2009 with the following procedure: procedure TMyForm.WMQueryEndSession(var msg: TMessage); This article suggests ...
5
votes
2answers
2k views

Windows shutdown hook on java application run from a bat script

I have a bat script which runs a java application. If I press ctrl+c on it, it the application terminates gracefully, invoking all the shutdown hooks. However, if I just close the cmd window of the ...
0
votes
6answers
961 views

Setup ShutdownHook and exit application

I have the following code: public static void main(String[] args) { // login event String event = "login"; System.out.printf("Handling event: %s %s\n",event,getCurrentLogin()); ...
1
vote
2answers
570 views

How long does the JVM allow shutdown hooks to run before calling halt?

Follow up from previous question If you've read the previous question an alternative title may be: How often should my daemon check to see if it's been interrupted?
5
votes
1answer
267 views

H2 - wait for threads to write changes in the shutdownhook

I Have a shutdownhook, that is executed when the process is terminated. However the changes that the program makes to the h2 database are not persistent. Only if I let the shutdown thread wait some ...
2
votes
2answers
127 views

Find, from a ShutdownHook, why a program exits

If I've got a Java program that can exit for various reasons, like: because the main window, which is set to "exit on close", was closed because there are some System.exit( 0 ) in the code because ...
1
vote
2answers
330 views

ShutDownHook in multi-threaded application

I have an application which in its main method spawns a hundred threads (let's say we simulate a hundred accounts). I am experimenting with it and I would like it to just print terminating when ...
1
vote
1answer
729 views

Any Shutdown Hook when application is “Force Closed”?

Is there any way to make the program go through the shutdown hook if the user forces java to close (through the task manager or by closing the corresponding batch file). My program currently runs and ...
3
votes
2answers
146 views

Running Code on page leave [Actionscript]

How can I run code in Actionscript 3 when a page with my flash object is... well... I'm not sure of the term. When the webpage is left and the flash applet is exited?
0
votes
1answer
310 views

Prevent shutdown after shutdown hook

So, I should handle Ctrl-C. Ok, I can do that by registering a shutdown hook. And it works well until I want to prevent the shutdown. When Ctrl-C pressed I want to ask the user if he really wants to ...
3
votes
2answers
419 views

Why does ShutdownHookThread 'setDaemon true'

I recently needed to add a shutdown hook to a Scala app I have, and I discovered that Scala provides a helper for this called ShutdownHookThread. In its source I noticed that it sets the new thread ...
10
votes
3answers
1k views

debug_backtrace() from registered shutdown function in PHP

While tinkering for an answer to this question, I found that debug_backtrace() doesn't trace beyond the function registered to register_shutdown_function(), when called from within it. This was ...
2
votes
3answers
589 views

how to check if exit is clean in a shutdown function in PHP?

How can I test if exit is clean in a shutdown function in PHP? By clean exit I mean that the script was not terminated due to an error.
0
votes
1answer
228 views

Hooking up into OS shutdown event in .NET WPF-Application on Win7 x64?

This seems to be mission impossible? According to the comments on this page: http://msdn.microsoft.com/en-us/library/system.windows.application.exit.aspx , others also have trouble archieving it. ...
1
vote
1answer
2k views

How netbeans stops a running?

I'm programming with Java in Linux using Netbeans 7 and as my program (sometimes) could not exit (not in this eon, maybe) I create a thread to handle shutdown Runtime.getRuntime().addShutdownHook(new ...
5
votes
3answers
891 views

How to do graceful shutdown/termination of java processes?

I am running some java apps and I need to shutdown/close all apps gracefully from windows bat script. So my question is: How to invoke shutdown hook by windows bat script and gracefully shutdown java ...
0
votes
3answers
592 views

Detecting that JVM is shutting down

I have a Swing application that handles Ctrl+C using addShutdownHook(), and it works fine until one of the shutdown tasks I have calls a function that under normal circumstances changes a JLabel text, ...
2
votes
1answer
196 views

Can shutdown hooks be used for slightly longer task

I have come across the shutdown hooks functionality which is invoked when java application is shutdown. I am using SIGTERM signal to shutdown my java process on a linux Box. And at the time of ...
4
votes
3answers
328 views

Controlled application shut-down strategy

Our (Windows native C++) app is composed of threaded objects and managers. It is pretty well written, with a design that sees Manager objects controlling the lifecycle of their minions. Various ...
1
vote
2answers
515 views

Application continues to run after System.exit(0) is called - Java

I'm trying to clean up resources in my application before it shuts down, following on from my previous question (Detecting When A Java Application Closes) I have implemented the following code which ...
1
vote
2answers
2k views

Node.JS Shutdown Hook

Is it possible to intercept the default kill signal and use it as a command for a graceful shutdown? This is for Solaris SMF. The easiest way to have a stoppable service that I have found is to set ...
4
votes
2answers
831 views

Why does a java.util.Logger in a ShutdownHook within JBoss 5.1 not always prints to server.log?

I have a EJB3-Timer within a JBoss 5.1. edit: The ShutdownHook should set a flag, that the doTimeOut() can terminate graceful (otherwise it would complete the job, and the shutdown is stopped until ...

1 2