Skip to content

Instantly share code, notes, and snippets.

@spericas
Created June 22, 2020 14:53
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 spericas/6046b85467c2032264ea5ae7f48acf34 to your computer and use it in GitHub Desktop.
Save spericas/6046b85467c2032264ea5ae7f48acf34 to your computer and use it in GitHub Desktop.
MessageQueueResource
@Path("rest")
public class MessageQueueResource {
@Inject
private MessageQueue messageQueue;
@POST
@Consumes("text/plain")
public void push(String s) {
messageQueue.push(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment