A simple eventbus for .net
Posted
by chikak
on Stack Overflow
See other posts from Stack Overflow
or by chikak
Published on 2008-12-15T12:49:17Z
Indexed on
2010/04/22
14:53 UTC
Read the original article
Hit count: 219
Hello,
I want to make a very simple event bus which will allow any client to subscribe to a particular type of event and when any publisher pushes an event on the bus using EventBus.PushEvent() method only the clients that subscribed to that particular event type will get the event.
I am using c#.net 2.0
Any help/pointer would be greatly appreciated.
Thanks Pradeep
© Stack Overflow or respective owner