开发者

Windows Service And Thread Programming .NET

I have开发者_运维技巧 developed windows service to process files whose records will be stored in database. When windows service finds a file it creates a thread and assigns each file to one thread. I have not used Thread Pool. I wanted to know when windows service is stopped, then how to identify how many threads are running and whether they are complete. If all the threads are executed then windows service can be stopped successfully. Otherwis windows service should wait until all threads are executed or aborted. How to implement this.


You can always store the Thread objects in a list and manage them from there.

Something like:

List<Thread> workerThreads = new Lits<Thread>();
Tread workerThread = new Thread(...);
workerThreads.Add(workerTread);
workerThreads.Start();


You need to keep a list of running threads. You can achieve this by adding each new thread to a list (before calling start), and having the worker method remove the thread from the list (directly, or by raising an event on a controller object).

Basically you need to look after this yourself.

Hope this helps


When windows service is stopped?

When it is closed using SCM, you can check OnStop event to track the closing event

how to identify how many threads are running and whether they are complete? Simply keep every thread you created in an array or list, and to check if the thread still running you can set a boolean variable at the end of the the thread function.

To close the service under specific condition you can use Environment.Exit method.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜