Skip navigation links

Package java8.util.concurrent

The Java 7 and Java 8 utility classes commonly used in concurrent programming.

See: Description

Package java8.util.concurrent Description

The Java 7 and Java 8 utility classes commonly used in concurrent programming.

Memory Consistency Properties

Chapter 17 of The Java™ Language Specification defines the happens-before relation on memory operations such as reads and writes of shared variables. The results of a write by one thread are guaranteed to be visible to a read by another thread only if the write operation happens-before the read operation. The synchronized and volatile constructs, as well as the Thread.start() and Thread.join() methods, can form happens-before relationships. In particular:
Since:
1.8
Skip navigation links

Copyright © 2016. All rights reserved.