Hello everybody,
I just want to ask if anybody thought about it or already modified/extend the EventAggregator to solve this issue.
It would be great if an Event can be published using 0MQ.
For example:
LAN1
.. PC1
.... Application1.Module1.Publish<HelloEvent>("Hello From PC1");
.... Application1.Module2.Subscribe<HelloEvent>(OnHello);
.... Application2.Module1.Subscribe<HelloEvent>(OnHello);
.. PC2
.... Application1.Module1.Subscribe<HelloEvent>(OnHello);
LAN2
.. PC1
.... Application1.Module1.Subscribe<HelloEvent>(OnHello);
Means we can Publish/Subscribe through AppDomains and further.
Any suggestions are appreciated.
Kind regards