i have a question about multithreading applications. I use the TaskFactory to start a cpu+time intensive method. This method is a call to SAP and needs a long time to finish. The user should have an option to cancel the task. Currently i am using thread.Abort(), but i know that this method isn't the best solution to cancel it. Does anyone have a recommendation for an alternative?
Code Example:
Form_LoadAction loadbox = new Form_LoadAction();
Thread threadsapquery = null;
Task.Factory.StartNew<>(() =>
{
t = Thread.CurrentThread;
Thread.sleep(10000000000); //represents time + cpu intensive method
}
loadbox.ShowDialog();
if (loadbox.DialogResult == DialogResult.Abort)
{
t.Abort();
}
The best option is to see if the method supports any kind of cooperative cancelation.
However, if that is not possible the next best option to canceling a long running process like that is use a 2nd executable that runs the long running process then communicate with that 2nd executable over some form of IPC (WCF over Named Pipes works great for intra-machine IPC) to "proxy" all of the calls. When you need to cancel your process you can kill the 2nd proxy exe and all handles will properly be released (where
Thread.Abort()
would not).Here is a complete example. There are 3 files, a common library that is shared between both executables that holds the interfaces and implementations of the proxy, a hosting app and your client app. The hosting app and common library could potentially be combined in to a single assembly.
LibraryData.dll
HostApp.exe
YourProgram.exe
One bug I could not squash completely is if you "Fail Fast" the client app (like by clicking the stop icon in visual studio) it never has the opportunity to tell the hosting app to shutdown.