Java Event Handling Pitfalls

kulluM

New member
I'm working on a software that requires an event from a Java object. I'm well-versed in how this works in C#, having had enough practise to avoid the dangers.

What are the drawbacks of using events in Java? What distinguishes them from C# 2.0 events?

Example: An object changed event to force the owner object to save.
 
Top