If a routine is running periodically by way of a System.Threading.Timer, what can be done to prevent this routine from being aborted mid-way due to the termination of the host application?
|
|
|||||||||||||
|
|
Well, you cannot possibly do anything if the application is terminating; however you can prevent the implicit application termination by exit from You can make the timer to run at that thread, however you cannot do it with |
|||
|
|
|
There is no way to guarantee that your thread won't be terminated abnormally. Any number of things can go wrong: an unexpected power failure, user terminating the application with Task Manager, or a bug in your program that crashes the thread are just three possibilities. If you're doing a multi-stage database update that, if interrupted, would leave your database in a corrupted or inconsistent state, then you should be using transactions. |
|||
|
|
|
This code should cause the main thread to block for 10 seconds waiting for any queued timer callbacks to finish. This can be run at the exit point of the host application.
|
|||
|
|