Click here to Skip to main content
15,888,044 members
Articles / Desktop Programming / Windows Forms

A common class for executing tasks with a responsive UI

Rate me:
Please Sign up or sign in to vote.
4.74/5 (21 votes)
24 Jan 2009CPOL1 min read 93.4K   677   81   58
Execute actions while making the form wait and still be responsive to other tasks.

1.jpg

Introduction

This is a common way to implement the standard WinForms behavior of executing a potentially long running action while still having the UI be responsive and allowing the user to know that something is happening via the UI. This can be used with standard WinForms, WPF, or an MVP style application which is how I use it.

Background

Some of the other options which I felt weren't as easy as this to use:

Using the code

Download the source and hit F5 - three examples are given:

  • The standard behavior where the UI locks while executing.
  • The new behavior where the UI is not locked and the user can tell the form is busy.
  • What happens in the new behavior when an exception is thrown.

In order to use this, the form or view in question must implement the interface IThreadedExecuterView, in either the form itself or in a base form:

C#
public partial class Form1 : Form, IThreadedExecuterView
{

#region IThreadedExecuterView Members
public void SetWait(bool isEnabled)
{
     this.Cursor = (isEnabled ? Cursors.Default : Cursors.WaitCursor);
     button1.Enabled = button2.Enabled = isEnabled;
}

public void HandleException(Exception ex)
{
     MessageBox.Show("This is your standard error " + 
                     "handling call here for " + ex.Message);
}

Below is an example of it in use - there is no need to worry about the UI thread, creating delegates, or doing anything special for exceptions other than handling them in one place.

C#
using (ThreadedExecuter<BusinessObject> executer = 
         new ThreadedExecuter<BusinessObject>(this))
{
     executer
          .Process(() =>
          {
               return GetData(); //executes in background worker
          })
          .WhenFinished(businessObject =>
          {
               UseData(businessObject); //executes on UI thread
          })
     .Run();
}

It works for value types or reference types. Here is a Unit Test demonstrating its usage:

C#
[Test]
public void TestThreadedExecuterNormalBehavior()
{
     int result = 0;
     bool didComplete = false;
     AutoResetEvent waiter = new AutoResetEvent(false);
     IThreadedExecuterView view = 
        MockRepository.GenerateStub<IThreadedExecuterView>();
     using (ThreadedExecuter<int> worker = new ThreadedExecuter<int>(view))
     {
          worker
               .Process(()=>
               {
                    Thread.Sleep(1000);
                    return 42;
               })
               .WhenFinished(workerResult => 
               {
                    result = workerResult;
                    didComplete = true;
                    waiter.Set();
               })
          .Run();
     }

     waiter.WaitOne(2000, false);
     Assert.AreEqual(42, result);
     Assert.IsTrue(didComplete);
}

History

  • 24-Jan-2009 - Initial version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I've been a software developer since 1996 and have enjoyed C# since 2003. I have a Bachelor's degree in Computer Science and for some reason, a Master's degree in Business Administration. I currently do software development contracting/consulting.

Comments and Discussions

 
GeneralRe: Unit Test Code Fails Pin
Henrik Jonsson28-Jan-09 8:26
Henrik Jonsson28-Jan-09 8:26 
GeneralMVP usage Pin
Paul B.26-Jan-09 4:23
Paul B.26-Jan-09 4:23 
GeneralMy vote of 2 Pin
ProJester125-Jan-09 8:03
ProJester125-Jan-09 8:03 
GeneralRe: My vote of 2 Pin
Paul B.25-Jan-09 11:57
Paul B.25-Jan-09 11:57 
GeneralRe: My vote of 2 Pin
Paul B.25-Jan-09 12:00
Paul B.25-Jan-09 12:00 
GeneralRe: My vote of 2 Pin
Jon_Boy20-May-09 9:39
Jon_Boy20-May-09 9:39 
GeneralMVP Pin
uffejz25-Jan-09 3:04
uffejz25-Jan-09 3:04 
GeneralRe: MVP Pin
Paul B.25-Jan-09 4:08
Paul B.25-Jan-09 4:08 
There are quite a few ways to implement MVP, but in my case the button in the UI calls a method in the presenter to GetXYZ, the presenter has a reference to the view and passes that to the threaded executer call. The threaded executer method call returns immediately and once it completes it calls the method on the view to display the data retreived. I tend to write my tests on the presenter, mocking the view and the model.

I'll think about making an article for that, might be a few weeks before I get to it, but the above is the gist of it.
GeneralRe: MVP Pin
uffejz25-Jan-09 6:41
uffejz25-Jan-09 6:41 
GeneralRe: MVP Pin
Paul B.25-Jan-09 12:04
Paul B.25-Jan-09 12:04 
GeneralRe: MVP Pin
uffejz26-Jan-09 1:20
uffejz26-Jan-09 1:20 
GeneralRe: MVP Pin
uffejz29-Jan-09 4:21
uffejz29-Jan-09 4:21 
GeneralRe: MVP Pin
uffejz19-Feb-09 0:41
uffejz19-Feb-09 0:41 
GeneralRe: MVP Pin
Paul B.19-Feb-09 14:08
Paul B.19-Feb-09 14:08 
GeneralRe: MVP Pin
uffejz23-Feb-09 21:52
uffejz23-Feb-09 21:52 
GeneralRe: MVP Pin
Paul B.12-Mar-09 16:26
Paul B.12-Mar-09 16:26 
GeneralRe: MVP [modified] Pin
uffejz15-Mar-09 1:44
uffejz15-Mar-09 1:44 
GeneralRe: MVP Pin
Paul B.15-Mar-09 3:47
Paul B.15-Mar-09 3:47 
GeneralRe: MVP [modified] Pin
uffejz15-Mar-09 4:27
uffejz15-Mar-09 4:27 
GeneralRe: MVP Pin
Paul B.15-Mar-09 12:28
Paul B.15-Mar-09 12:28 
GeneralRe: MVP [modified] Pin
uffejz16-Mar-09 3:02
uffejz16-Mar-09 3:02 
GeneralRe: MVP Pin
uffejz11-Mar-09 22:58
uffejz11-Mar-09 22:58 
GeneralRe: MVP Pin
Paul B.12-Mar-09 3:11
Paul B.12-Mar-09 3:11 
GeneralRe: MVP Pin
uffejz12-Mar-09 3:25
uffejz12-Mar-09 3:25 
GeneralRe: MVP Pin
uffejz18-Mar-09 23:48
uffejz18-Mar-09 23:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.