April 21, 2006 02:00 PM EDT
In concurrent programming, exclusion refers to any technique that dynamically
locks certain blocks of code so multiple threads can't corrupt their shared
resources in ways that can cause integrity problems. In Java, exclusion has
meant using the synchronized keyword against a met... (more)