Skip to content

Latest commit

 

History

History
 
 

README.md

Threads

Example here have to be split one per file, because they are either non-deterministic or take a perceptible amount of time to run.

TODO:

Sources:

Synchronization primitives

The synchronization primitives provided by the Java language are:

  • volatile field modifier keyword
  • synchronized method modifier or (TODO block modifier?) keyword
  • Object.wait(), Object.notify() and Object.notifyAll() magic class methods

Besides those, there are many more convenient higher level interfaces provided by the JCL under java.util.concurrent: