Java / Concurrent collections
Explain concurrent collection API.
The java.util.concurrent package includes a number of additions to the Java Collections Framework.
These collections helps preventing Memory Consistency Errors by defining a happens-before relationship between an operation that adds an object to the collection with subsequent operations that access or remove that object.
The API is initially introduced in JDK 1.5.
More Related questions...