Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Created February 10, 2015 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhirockzz/cdef63d0f495107f744e to your computer and use it in GitHub Desktop.
Save abhirockzz/cdef63d0f495107f744e to your computer and use it in GitHub Desktop.
@Path("/feed")
public class RESTFeed {
@Inject
Event<String> event;
@POST
@Consumes(MediaType.TEXT_PLAIN)
public void push(String msg) {
event.fire(msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment