![JAR search and dependency download from the Maven repository](/logo.png)
jaxrs.examples.async.SimpleAsyncEventResource Maven / Gradle / Ivy
/*
* Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package jaxrs.examples.async;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.POST;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.container.AsyncResponse;
import jakarta.ws.rs.container.Suspended;
import jakarta.ws.rs.core.MediaType;
/**
* Simple asynchronous event-based request processing example.
*
* @author Marek Potociar
*/
@Path("/async/nextMessage")
@Produces(MediaType.TEXT_PLAIN)
@Consumes(MediaType.TEXT_PLAIN)
public class SimpleAsyncEventResource {
private static final BlockingQueue SUSPENDED = new ArrayBlockingQueue(5);
@GET
public void readMessage(@Suspended final AsyncResponse ar) throws InterruptedException {
SUSPENDED.put(ar);
}
@POST
public String postMessage(final String message) throws InterruptedException {
SUSPENDED.take().resume(message);
return "Message sent";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy