To represent an asynchronous computation result in Spring Boot reactive programming, the _____ class is used.

  • AsyncTask
  • CompletableFuture
  • DeferredResult
  • Future
In Spring Boot reactive programming, the DeferredResult class is used to represent an asynchronous computation result. It allows a controller to start processing a request and return a DeferredResult immediately, deferring the actual result processing to a later time. This is useful for handling long-running or asynchronous tasks in a non-blocking manner.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *