views:

510

answers:

3
+1  Q: 

PubSub lib for c#

Is there a c# library which provides similar functionality to the Python PubSub library? I think it's kind of an Observer Pattern which allows me to subscribe for messages of a given topic instead of using events.

+3  A: 

These may be a bit heavy for you depending on your needs but: http://www.nservicebus.com/ http://blog.phatboyg.com/masstransit/

aaronjensen
A: 

Again, my be overkill, but the OSE library allows thins kind of thing.

pobk
It's not c# though
ohadsc
+1  A: 

Note, if you have events for message notification, there are many options for dependancy injection / inversion of control. See Spring.Net and Castle Windsor as two popular frameworks.

Tracker1