Hello everybody,
I want to implement a design in Java where I have multiple event sources (Threads). Such event source accomplish a specific task and had to notify the unique Event Handler (Class) and this one have to accomplish other tasks according to event sources notifications.
My question is : how to implement this desiqn in the appropriate manner in Java? There is a design pattern similar to this design?
Thank you in advance :).