node-qpid
node-qpid copied to clipboard
A Node.js native wrapper around Apache Qpid, specifically the AMQP 1.0 Proton C Messenger API
builds and works on ubuntu per Readme update. Tried to make building less painful.
I just started experimenting with node-qpid. Is it suppose to work with newer qpid-proton lib (v0.7 for now)? What I can compile it with following patch: diff --git a/src/messenger.cc b/src/messenger.cc...
Such as whether to auto-settle messages, etc.
put() should be supported, as well as send() w/ no parameters. Each callback from put() should return the number of outgoing messages.
This + listen() should work for receiving messages from a single source in simple cases. This + send() should send to that address also in simple cases. Shouldn't have to...