Class ChatResource
- java.lang.Object
-
- org.glassfish.jersey.examples.server.async.managed.ChatResource
-
-
Constructor Summary
Constructors Constructor Description ChatResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidgetMessage(AsyncResponse ar)StringpostMessage(Message message)
-
-
-
Method Detail
-
getMessage
@GET @ManagedAsync public void getMessage(@Suspended AsyncResponse ar) throws InterruptedException
- Throws:
InterruptedException
-
postMessage
@POST @ManagedAsync public String postMessage(Message message) throws InterruptedException
- Throws:
InterruptedException
-
-