You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2022. It is now read-only.
Opening an issue for (eventually) making some API changes, like, for listeners...
queue.listen({ack: true},function(msg,ack){doStuff(msg);this.headers;//message headersthis.info;//other delivery information//want to acknowledge the message? just call `ack`ack();//rejecting the message? just pass false to `ack`ack(false);//want to reject and requeue? pass true as the second param to `ack`ack(false,true);})