5,699,997 members and growing! (13,814 online)
Email Password   helpLost your password?
Languages » C# » Delegates and Events     Intermediate License: The Code Project Open License (CPOL)

The EventPool Revisited

By Pete O'Hanlon

Easily manage .NET events using attributes, enumerations and generics
C# 2.0, C# 3.0, C#, Windows, .NET, .NET 3.0, .NET 2.0VS2005, Visual Studio, Dev

Posted: 2 Aug 2007
Updated: 28 Mar 2008
Views: 12,698
Bookmarked: 33 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
14 votes for this Article.
Popularity: 4.58 Rating: 4.00 out of 5
3 votes, 21.4%
1
2 votes, 14.3%
2
0 votes, 0.0%
3
3 votes, 21.4%
4
6 votes, 42.9%
5

Introduction

I recently started using Marc Clifton's excellent EventPool component to simplify the use of creating and using events. As Marc indicates in his writeup on the component, there are some drawbacks relating to the use of EventArgs based on the limitations of .NET 1, .NET 1.1.

Background

With the advent of .NET 2 and the introduction of generics, it seemed the ideal opportunity to revisit the EventPool and see what could be done to enhance it. Some of the new functionality is based on differences between .NET 1 and 2. Other enhancements have been included that have nothing to do with technology upgrades, but rather are down to features that I felt were missing in the original version.

Here are a list of features that have been added:

  1. The ability to use event arguments derived from EventArgs.
  2. The ability to use enumerations when managing events.
  3. The option to unsubscribe from events.
  4. Retrieve a list of supported events.
  5. Retrieve a list of events that have no subscriptions. This is useful for removing stale entries.
  6. Publish events using attributes.

Here we go through the different ways of using the EventPool.

Derived Event Arguments

Suppose that you want to subscribe to an event handler which uses an event argument class called AddEventArgs. All you need to do is this:

eventPoolHandler.EventPool.Subscribe
    ("Add", new EventHandler<AddEventArgs>(AddEventHandler));

Then, code up your event handler as you would normally:

private void AddEventHandler(object sender, AddEventArgs aea)
{
  // Do something.
} 

To actually raise the event, you call:

eventPool.Fire("Add", this, new AddEventArgs());

You now have typesafe event arguments.

Enumerated Events

One of the problems with using strings to manage event names is that there is too much of a risk of names being typed in incorrectly. To get around this, you can add an enumeration that says what events you want to publish.

There are two ways to hook your enumerations up as events. One method allows you to pick a specific enumeration and publish that one only, the other allows you to publish all elements in the enumeration. When you subscribe to an enumeration or fire it, you must pick the specific enumeration.

Sample

public enum FileOperations
{
  Opening,
  Closing,
  Saving
}

public class EventPublisher : IEventPool
{
  private EventPool eventPool;
  public EventPublisher()
  {
    this.eventPool = new EventPool();
    this.eventPool.Publish(typeof(FileOperations));
  }
  public EventPool EventPool
  {
    get { return this.eventPool ; }
  }
}

Unsubscribe From An Event

Sometimes you want to unsubscribe from event notifications. In this case, you simply call the Unsubscribe method.

eventPoolHandler.EventPool.Unsubscribe
    (FileOperations.Opening, new EventHandler<AddEventArgs>(AddEventHandler));

Supported Events and Unsubscribed Events

The Events property returns a list of events that have been published on a particular event pool.

The UnsubscribedEvents property returns a list of events that have no active subscriptions.

Publishing Events using Attributes

In the assembly, there is an EventPoolAttribute class that you can use to mark your event publishing class with the list of events that you want to support. You can either supply strings or enumeration.

public enum FileOperations
{
  Opening,
  Closing,
  Saving,
}
[EventPool(typeof(FileOperations))]
public class EventPublisher : IEventPool
{
  private EventPool eventPool = new EventPool();
  public EventPublisher() {}
  public EventPool EventPool
  {
    get { return eventPool ; }
  }
} 

Finally

I hope that this gives you some taste of what you can do with the EventPool class and that it will prove useful to you.

History

  • 2nd August, 2007: Article uploaded
  • 3rd August, 2007: Article and code updated to include the ability to publish an enumeration in its entirety and to publish events in the EventPoolAttribute class
  • 28th March, 2008: Article updated to correct an issue with the Unsubscribe method

License

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

About the Author

Pete O'Hanlon


Mvp
A developer for more years than I care to remember. I live in the North East of England with 2 wonderful daughters and a wonderful wife.
Occupation: CEO
Location: United Kingdom United Kingdom

Other popular C# articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 20 of 20 (Total in Forum: 20) (Refresh)FirstPrevNext
GeneralUnsubscribe still doesn't workmembersiroman12:27 9 Jul '08  
GeneralUnsubscribe seems brokenmemberdirk lewis9:17 28 Mar '08  
GeneralRe: Unsubscribe seems brokenmvpPete O'Hanlon11:09 28 Mar '08  
GeneralRe: Unsubscribe seems brokenmemberdirk lewis3:30 3 Apr '08  
GeneralRe: Unsubscribe seems brokenmvpPete O'Hanlon9:52 6 Apr '08  
GeneralRe: Unsubscribe seems brokenmemberl0t3k8:49 5 May '08  
GeneralRe: Unsubscribe seems brokenmvpPete O'Hanlon22:57 7 May '08  
General[Message Deleted]memberdirk lewis2:40 31 Mar '08  
GeneralAbout the enumsmemberphilippe dykmans5:46 25 Oct '07  
GeneralRe: About the enumsmemberPete O'Hanlon3:21 5 Nov '07  
QuestionIs this correct?memberObiwan Jacobi20:29 2 Aug '07  
AnswerRe: Is this correct?memberPete O'Hanlon0:00 3 Aug '07  
GeneralVery nicememberSacha Barber8:59 2 Aug '07  
GeneralRe: Very nicememberPete O'Hanlon10:30 2 Aug '07  
GeneralRe: Very nicememberSacha Barber22:19 2 Aug '07  
GeneralRe: Very nicememberPete O'Hanlon22:47 2 Aug '07  
GeneralRe: Very nicememberSacha Barber3:27 3 Aug '07  
GeneralNice!supporterMarc Clifton4:05 2 Aug '07  
GeneralRe: Nice!memberPete O'Hanlon4:18 2 Aug '07  
GeneralRe: Nice!memberPete O'Hanlon0:01 3 Aug '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 28 Mar 2008
Editor: Deeksha Shenoy
Copyright 2007 by Pete O'Hanlon
Everything else Copyright © CodeProject, 1999-2008
Web19 | Advertise on the Code Project