I have requirement to cancel method execution if it takes the more than two seconds to complete and restart it on another thread.
So, is there any way/call back mechanism/HACK, I can make method inform me that it crossed 2 seconds time limit?
|
I have requirement to cancel method execution if it takes the more than two seconds to complete and restart it on another thread. So, is there any way/call back mechanism/HACK, I can make method inform me that it crossed 2 seconds time limit?
| |||||||
feedback
|
|
check if network drive exists with timeout in c# Async Pattern:
| |||
|
feedback
|
|
You should create System.Threading.Timer on two seconds, and run your method in another thread and wait for callback from it, if method completes before timer runs you should dispose timer, otherwise you should abort thread in which you method are executing. This is pretty simple for example
In BreakFunction you should abort thread that runs your methods | |||||
|
feedback
|
|
It would be good if you can find it. I've been looking for it too. What I usually do is start the method in another
Two important things:
| |||
|
feedback
|