Class ServerSentEventsResource
- java.lang.Object
-
- org.glassfish.jersey.examples.sse.jersey.ServerSentEventsResource
-
-
Constructor Summary
Constructors Constructor Description ServerSentEventsResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddMessage(String message)voidclose()EventOutputgetMessageQueue()EventOutputstartDomain(String id)
-
-
-
Method Detail
-
getMessageQueue
@GET @Produces("text/event-stream") public EventOutput getMessageQueue()
-
addMessage
@POST public void addMessage(String message) throws IOException
- Throws:
IOException
-
close
@DELETE public void close() throws IOException
- Throws:
IOException
-
startDomain
@POST @Path("domains/{id}") @Produces("text/event-stream") public EventOutput startDomain(@PathParam("id") String id)
-
-