Hello,
I use backgroundworker objects to preform some async and threading where needed. Every once in awhile when I run the backgroundworker it stalls in the middle of running and doesn't finish. It usually does this when I am running more then 1 backgroundworker at the same time.
What I want to do when it stalls is cancel the operation and re-run it. My problem is I don't know how to detect when it has stalled. Is there some code I need to add to "notify" that the worker has stalled or is there no way to know?
Thanks,