vote up 3 vote down star
2

In my program i have some very long task, which should be interruptable from GUI (WPF). Any advices about threading architecture?

This task looks like N thread with such code:

public void DoLongOperation()
{
    for(int i=beginPoint; i<endPoint; i++)
    {
       doSomethingStupid(dataArray[i]);
    }
}
flag

3 Answers

vote up 9 vote down check

Take a look at BackgroundWorker; specifically, WorkerSupportsCancellation. There is an example of what you want to do at WPF Multithreading: Using the BackgroundWorker and Reporting the Progress to the UI.

link|flag
This is a great choice. +1 – 280Z28 Aug 11 at 6:07
Yeah, really useful and simple. I knew about this class, but never used it. Thx – ALOR Aug 11 at 6:17
vote up 0 vote down

.Interrupt() on a thread is not the good way, the only good way is with a bool as you say in your answer.

link|flag
vote up -2 vote down

Well, you can either check to see if it should be stopped, each loop iteration, by checking a bool. Or just .interrupt() it, and handle the exception (if it's safe for it to be killed at any time).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.