views:

69

answers:

1

A quartz scheduler is being used in an Application I am working on. A process that runs using the quartz scheduler spawns new threads. I was wondering if it is possible for these threads to continue living after the server is killed?

+1  A: 

That depends on whether the threads were told to be daemon threads or not (Quartz defaults to not). The JVM will only shutdown when all the remaining active threads are daemon threads.

BalusC
That makes sense. Thank you
John