Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C#

EventBroker: a notification component for synchronous and asynchronous, loosly coupled event handling

Rate me:
Please Sign up or sign in to vote.
4.89/5 (25 votes)
26 Oct 2008Apache9 min read 197K   2K   123  
EventBroker is a notification component for (a)synchronous loosly coupled event handling.
//-------------------------------------------------------------------------------
// <copyright file="UserInterface.cs" company="bbv Software Services AG">
//   Copyright (c) 2008 bbv Software Services AG
//
//   Licensed under the Apache License, Version 2.0 (the "License");
//   you may not use this file except in compliance with the License.
//   You may obtain a copy of the License at
//
//       http://www.apache.org/licenses/LICENSE-2.0
//
//   Unless required by applicable law or agreed to in writing, software
//   distributed under the License is distributed on an "AS IS" BASIS,
//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//   See the License for the specific language governing permissions and
//   limitations under the License.
//
//   Contains software or other content adapted from 
//   Smart Client � Composite UI Application Block, 
//   2005 Microsoft Corporation. All rights reserved.
// </copyright>
//-------------------------------------------------------------------------------

namespace bbv.Common.EventBroker.Handlers
{
    using System;
    using System.Collections.Generic;
    using System.Reflection;

    /// <summary>
    /// Handler that executes the subscription synchronously on the user interface thread (Send semanthics).
    /// </summary>
    public class UserInterface : IHandler
    {
        /// <summary>
        /// The synchronisation context that is used to switch to the UI thread.
        /// </summary>
        private readonly UserInterfaceSyncContextHolder syncContextHolder = new UserInterfaceSyncContextHolder();

        /// <summary>
        /// Initalizes the handler with the synchronization context for the ui thread, whcih has to be the currently running process.
        /// </summary>
        /// <param name="subscriber">The subscriber.</param>
        /// <param name="handlerMethodName">Name of the handler method on the subscriber.</param>
        /// <param name="parameterTypes">The parameter types of the handler method on the subscriber.</param>
        public void Initalize(object subscriber, string handlerMethodName, Type[] parameterTypes)
        {
            this.syncContextHolder.Initalize(subscriber, handlerMethodName, parameterTypes);
        }

        /// <summary>
        /// Executes the subscription synchronously on the user interface thread.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        /// <param name="subscriptionHandler">The subscription handler.</param>
        /// <param name="exceptions">The exceptions that occured during the execution. For implementors: Add exception here, Handle must not throw exceptions.</param>
        public void Handle(object sender, EventArgs e, Delegate subscriptionHandler, ICollection<Exception> exceptions)
        {
            this.syncContextHolder.SyncContext.Send(
                delegate(object data)
                    {
                        try
                        {
                            ((Delegate) data).DynamicInvoke(sender, e);
                        }
                        catch (TargetInvocationException ex)
                        {
                            exceptions.Add(ex.InnerException);
                        }
                    },
                    subscriptionHandler);
        }
    }
}

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 Apache License, Version 2.0


Written By
Architect bbv Software Services AG
Switzerland Switzerland
Urs Enzler is working for bbv Software Services in Switzerland as a Software Architect.

Blogger at planetgeek.ch

Comments and Discussions