The java.util.concurrent synchronizer framework

  • Authors:
  • Doug Lea

  • Affiliations:
  • State University of New York at Oswego, Oswego, NY

  • Venue:
  • Science of Computer Programming - Special issue: Concurrency and synchronization in Java programs
  • Year:
  • 2005

Quantified Score

Hi-index 0.00

Visualization

Abstract

Most synchronizers (locks, barriers, etc.) in the J2SE 5.0 java.util.concurrent package are constructed using a small framework based on class AbstractQueuedSynchronizer. This framework provides common mechanics for atomically managing synchronization state, blocking and unblocking threads, and queuing. The paper describes the rationale, design, implementation, usage, and performance of this framework.