Home Java javaTutorial How to use CompletableFuture for asynchronous programming and concurrency control in Java 9

How to use CompletableFuture for asynchronous programming and concurrency control in Java 9

Jul 30, 2023 am 11:58 AM
java completablefuture Asynchronous programming Concurrency control

How to use CompletableFuture to implement asynchronous programming and concurrency control in Java 9

Introduction:
With the increasing demand for high performance and high concurrency in modern applications, asynchronous programming and concurrency control have become Common problems in development. The CompletableFuture class introduced in Java 9 provides a powerful mechanism to handle asynchronous operations and provides a simple and elegant way to implement concurrency control. This article will introduce the basic concepts of CompletableFuture in Java 9 and provide some sample code to demonstrate how to use CompletableFuture to implement asynchronous programming and concurrency control.

1. Introduction to CompletableFuture

CompletableFuture is a supplement to the asynchronous programming mechanism introduced in Java 8. It is a class that implements the Future and CompletionStage interfaces. The Future interface is used to represent the result of an asynchronous task that may not be completed, while the CompletionStage interface is used to express a calculation that may be performed asynchronously (including triggering operations and returning results), as well as subsequent operations that may be triggered after the calculation is completed. The CompletableFuture class provides a simplified way to use these interfaces and provides more powerful capabilities for handling asynchronous operations.

2. Basic usage examples

  1. Creating a CompletableFuture object

First, we need to create a CompletableFuture object to represent the result of asynchronous calculation. The CompletableFuture class provides a variety of static methods to create such objects, such as completedFuture, supplyAsync, etc. The following is a sample code:

CompletableFuture<String> future = CompletableFuture.completedFuture("Hello, CompletableFuture!");
Copy after login

In the above code, we use the completedFuture method to create a completed CompletableFuture object and pass it a string as the calculation result.

  1. Trigger asynchronous calculation

Next, we need to trigger an asynchronous calculation and associate it with the CompletableFuture object created in the previous step. The CompletableFuture class provides two methods to achieve this, namely runAsync and supplyAsync. The former is used to perform an asynchronous operation that does not return a result, while the latter is used to perform an asynchronous operation that returns a result. The following is a sample code:

CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
    // 异步计算,返回一个整数结果
    return 42;
});
Copy after login

In the above code, we use the supplyAsync method to create an asynchronously executed calculation that will return an integer result.

  1. Processing asynchronous calculation results

Once the asynchronous calculation is completed, we can process the calculated results by calling the method of the CompletableFuture object. The CompletableFuture class provides a variety of methods to process results, such as thenApply, thenAccept, etc. The following is a sample code:

CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
    // 异步计算,返回一个整数结果
    return 42;
});
future.thenApply(result -> {
    // 处理结果并返回一个新的结果
    return result * 2;
})
.thenAccept(result -> {
    // 处理最终结果
    System.out.println("Final result: " + result);
});
Copy after login

In the above code, we call the thenApply method to process the result after the asynchronous calculation is completed, and return a new result. Then, we called the thenAccept method to process the final result and print it out.

3. Concurrency control example

In addition to asynchronous programming, CompletableFuture also provides some methods to implement concurrency control. The most commonly used methods include: anyOf, allOf and join.

  1. anyOf method

The anyOf method is used to wait for any one of multiple CompletableFutures to complete. It will return a new CompletableFuture object that evaluates to the result of the first completed CompletableFuture object. The following is a sample code:

CompletableFuture<Integer> future1 = CompletableFuture.supplyAsync(() -> {
    // 异步计算1
    return 1;
});
CompletableFuture<Integer> future2 = CompletableFuture.supplyAsync(() -> {
    // 异步计算2
    return 2;
});
CompletableFuture<Object> resultFuture = CompletableFuture.anyOf(future1, future2);
resultFuture.thenAccept(result -> {
    System.out.println("First result: " + result);
});
Copy after login

In the above code, we use the anyOf method to wait for either future1 or future2 to be calculated and print out the result.

  1. allOf method

The allOf method is used to wait for all calculations in multiple CompletableFutures to be completed. It will return a new CompletableFuture object, which evaluates to a Void value (null). Here is a sample code:

CompletableFuture<Integer> future1 = CompletableFuture.supplyAsync(() -> {
    // 异步计算1
    return 1;
});
CompletableFuture<Integer> future2 = CompletableFuture.supplyAsync(() -> {
    // 异步计算2
    return 2;
});
CompletableFuture<Void> resultFuture = CompletableFuture.allOf(future1, future2);
resultFuture.thenRun(() -> {
    System.out.println("All calculations are completed.");
});
Copy after login

In the above code, we use the allOf method to wait for all calculations in future1 and future2 to complete and print out a completion message.

  1. join method

The join method is used to wait for the calculation result of a CompletableFuture and return the result. If an exception occurs during calculation, an exception will be thrown. The following is a sample code:

CompletableFuture<Integer> future = CompletableFuture.supplyAsync(() -> {
    // 异步计算,返回一个整数结果
    return 42;
});
int result = future.join();
System.out.println("Result: " + result);
Copy after login

In the above code, we use the join method to wait for the calculation of the future to be completed and obtain its result.

Summary:

This article introduces the basic concepts of CompletableFuture in Java 9 and gives some sample code to demonstrate how to use CompletableFuture to implement asynchronous programming and concurrency control. By using CompletableFuture, we can handle asynchronous operations in a simple and elegant way and achieve flexible control of concurrent calculations. I hope these examples will help you understand and use CompletableFuture.

The above is the detailed content of How to use CompletableFuture for asynchronous programming and concurrency control in Java 9. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

TimeStamp to Date in Java TimeStamp to Date in Java Aug 30, 2024 pm 04:28 PM

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Java Program to Find the Volume of Capsule Java Program to Find the Volume of Capsule Feb 07, 2025 am 11:37 AM

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

How to Run Your First Spring Boot Application in Spring Tool Suite? How to Run Your First Spring Boot Application in Spring Tool Suite? Feb 07, 2025 pm 12:11 PM

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo

See all articles