Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Building RESTful Web Services with Java EE 8

You're reading from   Building RESTful Web Services with Java EE 8 Create modern RESTful web services with the Java EE 8 API

Arrow left icon
Product type Paperback
Published in Jul 2018
Publisher Packt
ISBN-13 9781789532883
Length 116 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Mario-Leander Reimer Mario-Leander Reimer
Author Profile Icon Mario-Leander Reimer
Mario-Leander Reimer
Arrow right icon
View More author details
Toc

Implementing asynchronous web services

In this section, we're going to take a look at implementing asynchronous REST resources. We'll see the basic usage of the @Suspended annotation and the AsyncResponse class. We'll have a look at processing and resuming on an AsyncResponse instance in a different thread, and we will also talk about the basic timeout-handling for asynchronous responses.

Let's get started and switch to code. As usual, we prepare a few templates for us to get started. First up, I want to show you the basic structure of an asynchronous resource—have a look at the signature. All you need to do is implement a public void method that has at least one parameter that uses the @Suspended annotation. As a type, it uses the AsyncResponse class that's provided by the JAX-RS API:

    @GET
public void calculate(@Suspended final AsyncResponse...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime