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
If possible create a series of decorators to achieve the following implementation
@AmqpConnection('default')exportdefaultclassMyAmqpProvider{
@Consume('queue_name',{ack: false})asynclisten(message){console.log('message',message.content.toString());}
@Exchange('exchange_name','queue_name')asyncexchange(){return'send me to the queue';}}
The text was updated successfully, but these errors were encountered:
Honestly I haven't really had the time to dedicate to this feature unfortunately :( I'd love to do it! However the applications I built the package for have been working the way I implemented them so I haven't found the need to implement this feature at work so they won't let me really :'(
I've also struggled to decide how to implement the feature so that's another hurdle.
I'll have another look today as I've got a bit of free time and try and decide the best way of implementing this feature. If you've got any idea I'd like to hear them :)
If possible create a series of decorators to achieve the following implementation
The text was updated successfully, but these errors were encountered: