Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
268 views

How do I implement graceful termination in Java?

Say for instance I have my application running in a Linux terminal and I press "CTRL+C" on my keyboard to kill the process it will terminate the Java program. Is there any way to catch this "request" ...
6
votes
8answers
6k views

Best Way to Gracefully Shutdown a Java Command Line Program

I'm interested in different approaches to gracefully shutting down a Java command line program. Sending a kill signal is not an option. I can think of a few different approaches. Open a port an ...
4
votes
3answers
116 views

How does the JVM terminate daemon threads? or How to write daemon threads that terminate gracefully

Hypothetical scenario: I have a daemon thread responsible for some io, the main thread finishes and returns, and the JVM decides to terminate my daemon thread. How does it do so? Interrupt? Finalize? ...
3
votes
1answer
69 views

How to gracefully restart a NodeJS server?

Currently, my prod enviroment for a side project is a git repo, where I pull in some code, manually kill the server with Ctrl-C, and restart it manually. I realize there are a lot of things wrong ...
3
votes
1answer
266 views

JAVA: how to call a method when the process has been stopped (is it even possible?)

I want it so when my users start my program from the command line and then kill the process (ctrl+c, for example) the program will shutdown gracefully by closing all its connections. Is this even ...
1
vote
3answers
84 views

How to gracefully exit this application?

In order to not show a form in C#.NET when first starting the application I have this: [STAThread] static void Main() { Application.EnableVisualStyles(); ...
1
vote
3answers
3k views

ThreadAbortException vs graceful event handle exit in C#

When aborting the execution of a thread I'm always doubting between a graceful exit with an event handler like this: int result = WaitHandle.WaitAny(handles); if (result = WAIT_FINALIZE) ...
0
votes
3answers
232 views

Linux C catching kill signal for graceful termination

I have a process using sockets, database connections and the likes. It is basically a server process relaying between sensor data and a web interface, and as such it is important to ensure the ...
0
votes
6answers
106 views

Create a dual function html Url Link?

Problem: You have a regular set of Url links in a html page eg: <a href="/foo/bar">Foo Bar</a> You want to create a javascript function such that when any html links are clicked, ...
0
votes
2answers
234 views

manage a .net app to shutdown gracefully when terminated\killed

HI, we have a .net console app that has many foreground threads. If we kill the process using task manager or issuing killjob, kill from the command line in windows, is there a way by which we can ...