I need a way to trigger events on remote processes "over the wire" and pass parameters (xml serialization, whatever). I want to be able to do such things.
foreach(childClient c in clientList)
{
MyEvent += c.EventHandler;
}
MyEvent("param");
What technologies are good for this? WCF?
This is a small deployment in a home software project, so the minimum overhead in design is a plus, it is not necessary to be “fast” and not handle large amounts of traffic.
source
share