Event Publisher Question

  • Thread starter Thread starter Shmulik
  • Start date Start date
S

Shmulik

I need to create a few Window Services, and these services should
"broadcast" events to any listeners.
My question is, if I know that the number of clients will be small (<50),
what would be the most efficient way to do this?

Should I use:

a) LCE /COM+ objects?
b) Can clients instantiate a windows service object and subscribe to a
published event (Delegate/Event model)?
c) Named pipes/TCP?

The gist is that the services will always be running and capable of
broadcasting status information that any client listener program should be
able to "tune into".

TIA
 
Back
Top