Back to Playframework

Handling asynchronous results

documentation/manual/working/javaGuide/main/async/JavaAsync.md

3.1.0-M96.7 KB
Original Source
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

Handling asynchronous results

Make controllers asynchronous

Internally, Play Framework is asynchronous from the bottom up. Play handles every request in an asynchronous, non-blocking way.

The default configuration is tuned for asynchronous controllers. In other words, the application code should avoid blocking in controllers, i.e., having the controller code wait for an operation. Common examples of such blocking operations are JDBC calls, streaming API, HTTP requests and long computations.

Although it's possible to increase the number of threads in the default execution context to allow more concurrent requests to be processed by blocking controllers, following the recommended approach of keeping the controllers asynchronous makes it easier to scale and to keep the system responsive under load.

Creating non-blocking actions

Because of the way Play works, action code must be as fast as possible, i.e., non-blocking. So what should we return from our action if we are not yet able to compute the result? We should return the promise of a result!

Java 8 and newer provides a generic promise API called CompletionStage. A CompletionStage<Result> will eventually be redeemed with a value of type Result. By using a CompletionStage<Result> instead of a normal Result, we are able to return from our action quickly without blocking anything. Play will then serve the result as soon as the promise is redeemed.

How to create a CompletionStage<Result>

To create a CompletionStage<Result> we need another promise first: the promise that will give us the actual value we need to compute the result:

@promise-pi

Play asynchronous API methods give you a CompletionStage. This is the case when you are calling an external web service using the play.libs.WS API, or if you are using Pekko to schedule asynchronous tasks or to communicate with Actors using play.libs.Pekko.

In this case, using CompletionStage.thenApply will execute the completion stage in the same calling thread as the previous task. This is fine when you have a small amount of CPU bound logic with no blocking.

A simple way to execute a block of code asynchronously and to get a CompletionStage is to use the CompletableFuture.supplyAsync() method:

@promise-async

Using supplyAsync creates a new task which will be placed on the fork join pool, and may be called from a different thread -- although, here it's using the default executor, and in practice you will specify an executor explicitly.

Only the "*Async" methods from CompletionStage provide asynchronous execution.

Using ClassLoaderExecutionContext

You must supply the classloader execution context explicitly as an executor when using a Java CompletionStage inside an [[Action|JavaActions]], to ensure that the classloader remains in scope.

You can supply the play.libs.concurrent.ClassLoaderExecutionContext instance through dependency injection:

@cl-execution-context

Please see [[Class loaders|ThreadPools#Class-loaders]] for more information on using ClassLoaderExecutionContext.

Using CustomExecutionContext and ClassLoaderExecution

Using a CompletionStage or an ClassLoaderExecutionContext is only half of the picture though! At this point you are still on Play's default ExecutionContext. If you are calling out to a blocking API such as JDBC, then you still will need to have your ExecutionStage run with a different executor, to move it off Play's rendering thread pool. You can do this by creating a subclass of play.libs.concurrent.CustomExecutionContext with a reference to the custom dispatcher.

Add the following imports:

@async-explicit-cl-imports

Define a custom execution context:

@custom-execution-context

You will need to define a custom dispatcher in application.conf, which is done through Pekko dispatcher configuration.

Once you have the custom dispatcher, add in the explicit executor and wrap it with ClassLoaderExecution.fromThread:

@async-explicit-ec

You can't magically turn synchronous IO into asynchronous by wrapping it in a CompletionStage. If you can't change the application's architecture to avoid blocking operations, at some point that operation will have to be executed, and that thread is going to block. So in addition to enclosing the operation in a CompletionStage, it's necessary to configure it to run in a separate execution context that has been configured with enough threads to deal with the expected concurrency. See [[Understanding Play thread pools|ThreadPools]] for more information, and download the play example templates that show database integration.

Actions are asynchronous by default

Play [[actions|JavaActions]] are asynchronous by default. For instance, in the controller code below, the returned Result is internally enclosed in a promise:

@simple-action

Note: Whether the action code returns a Result or a CompletionStage<Result>, both kinds of returned object are handled internally in the same way. There is a single kind of Action, which is asynchronous, and not two kinds (a synchronous one and an asynchronous one). Returning a CompletionStage is a technique for writing non-blocking code.

Handling time-outs

It is often useful to handle time-outs properly, to avoid having the web browser block and wait if something goes wrong. You can use the play.libs.concurrent.Futures.timeout method to wrap a CompletionStage in a non-blocking timeout.

@timeout

Note: Timeout is not the same as cancellation -- even in case of timeout, the given future will still complete, even though that completed value is not returned.