Event handling in java

light2

Recruit
In Java, I'm developing a standalone, multi-threaded application. I'm attempting to find the most appropriate event-handling solution for his project.
I have 1-3 threads generating events (e.g., comm thread completes file upload), and other threads may wish to be notified when this event occurs. I want the event-creation and event-listening processes to be as separate as feasible.
What are your thoughts?
 
Back
Top