Simple question, to repeat the title:
Does closing the WinForms application stops all active BackgroundWorkers?
(I know that many StackOverflow's threads talk about BackgroundWorker, but none I've searched gave an explicit answer)...
|
|
Simple question, to repeat the title: Does closing the WinForms application stops all active BackgroundWorkers? (I know that many StackOverflow's threads talk about BackgroundWorker, but none I've searched gave an explicit answer)...
|
||
|
|
|
|
Sources: Reflector, Delegate.BeginInvoke, MSDN on Thread Pooling, Thread.IsBackground |
|||
|
|
|
|
If the application completely closes (as in nothing is preventing it from shutting down) your background workers will also be gone. |
||||
|
|
|
I think yes. Because threads are associated with process and if the process is closed all threads has to end. |
||
|
|
|
|
Once the process is gone all associated threads are gone as well. |
||
|
|
BackgroundWorker threads are background threads (ThreadPool threads), which die when the application dies. |
||
|
|
|
|
The only way a thread can go on executing after your main (UI) thread has stopped is if it has been created explicitely, by creating a new Thread instance and setting the IsBackground to false. If you don't (or if you use the ThreadPool which spawns background threads - or the BackgroundWorker which also uses the ThreadPool internally) your thread will be a background thread and will be terminated when the main thread ends. |
|||
|
|
|
|
First of all, just to make this answer simple: When a process has closed, all of its threads have terminated. There's no question about this. The question, as I interpret it, thus becomes:
The answer to that question is: No, they won't. |
||
|
|
|
|
Yes, it will. I wrote this simple form, and closing the form exits the application:
|
||
|
|