Home »

How do I know when my thread pool work item has completed?

Question ListCategory: ASP.NETHow do I know when my thread pool work item has completed?
denielshakespeare5 author asked 8 years ago
1 Answers
jamessmith05 author answered 8 years ago

There is no way to query the thread pool for this information. You must putcode into the WaitCallback method to signal that it has completed. Events
are useful for this.

Please login or Register to Submit Answer