I really like the functionality the EventAggregator from Prism offers me to loosely couple my classes. But now I have a problem which is not covered by the EventAggregator.
So let us assume I publish the message "Test" and at the moment there is no subscriber of this message. Is it possible to postpone it until a subscriber exists?
Regards
This is easy enough to implement. Define a second message that will be published later and a class that contains the message and a timer:
You'll need a context to place this object to keep it around. You can drop it onto the host IU container as a private field.