easternbloc / node-stomp-client

A STOMP client for Node.js
Other
93 stars 47 forks source link

how to ack a message #23

Closed temp3l closed 7 years ago

temp3l commented 10 years ago

how to ack?

redben commented 10 years ago

Seems like it is not supported. Stomp.js does.

gknapp commented 9 years ago

I wrote some ack and nack functions for a ClojureScript project consuming this library.

Basically construct a new StompFrame with a command "ACK" or "NACK", call frame.send(StompClient.stream)

https://gist.github.com/gknapp/6c10695c8a8329f13378

timgriffin commented 8 years ago

@stephanMettler better late than never - here is an ack example.

https://gist.github.com/timgriffin/addaaaa612b3332381e58fa6eb571a69

temp3l commented 7 years ago

@timgriffin better late than never

Thanks for your example!