Post Made Community Wiki by Community
show/hide this revision's text 2 deleted 71 characters in body

My biggest problem has always been deadlocks, especially caused by listeners that are fired with a lock held. In these cases, it's really easy to get inverted locking between two threads. In my case, between a simulation running in one thread and a visualization of the simulation running in the UI thread.

The dumbest mistake I frequently make is forgetting

EDIT: Moved second part to synchronize before calling notify() or wait() on an objectseparate answer.

show/hide this revision's text 1

My biggest problem has always been deadlocks, especially caused by listeners that are fired with a lock held. In these cases, it's really easy to get inverted locking between two threads. In my case, between a simulation running in one thread and a visualization of the simulation running in the UI thread.

The dumbest mistake I frequently make is forgetting to synchronize before calling notify() or wait() on an object.