Skip navigation links

Package java9.util.concurrent

Covers a backport of the upgraded (JEP 266) Java 9 CompletableFuture API for Java 6 to 8 and Android developers.

See: Description

Package java9.util.concurrent Description

Covers a backport of the upgraded (JEP 266) Java 9 CompletableFuture API for Java 6 to 8 and Android developers. See JEP 266: More Concurrency Updates.

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:
9
Skip navigation links

Copyright © 2021. All rights reserved.