Click here to Skip to main content
15,893,622 members
Articles / Programming Languages / Visual Basic

Automatic Implementation of the Event-Based Asynchronous Pattern

Rate me:
Please Sign up or sign in to vote.
4.78/5 (32 votes)
26 Nov 2008CPOL20 min read 63.4K   912   101  
Implement the event-based asynchronous pattern automatically with this code generator
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;

namespace AsyncGen
{
    /// <summary>
    /// Holds the final output of the operation.
    /// </summary>
    /// <typeparam name="TOutput">The type of the output.  If the operation has multiple outputs, a value type that encapsulates all of them.</typeparam>
	public class AsyncCompletedEventArgs<TOutput> : AsyncCompletedEventArgs
	{
        /// <summary>
        /// Constructor.
        /// </summary>
        /// <param name="output">The output of the operation.</param>
        /// <param name="error">The exception that was thrown by the operation, if it failed.</param>
        /// <param name="cancelled">A boolean value indicating whether the operation has terminated due to a cancellation request from the client.</param>
        /// <param name="userState">An object that uniquely identifies a specific invocation of the operation.</param>
		public AsyncCompletedEventArgs(TOutput output, Exception error, bool cancelled, object userState)
			: base(error, cancelled, userState)
		{
			this.output = output;
		}

        /// <summary>
        /// The output of the operation.  If the operation has multiple outputs, a <c>struct</c> that encapsulates all of them.
        /// </summary>
		public TOutput Output
		{
			get
			{
				RaiseExceptionIfNecessary();
				return output;
			}
		}

		private TOutput output;
	}

    /// <summary>
    /// Defines the signature for a handler of the completion event.
    /// </summary>
    /// <typeparam name="TOutput">The type of the output.  If the operation has multiple outputs, a value type that encapsulates all of them.</typeparam>
    public delegate void AsyncCompletedEventHandler<TOutput>(object sender, AsyncCompletedEventArgs<TOutput> args);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer (Senior) Philips Healthcare
Israel Israel
I got my B.Sc. in Mathematics and Computer Science from Tel Aviv University in 1997. Since then I have developed software in UNIX, Win32 and .NET. I currently live in Haifa.

Comments and Discussions