Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decorators #5

Open
bashleigh opened this issue Jul 11, 2018 · 2 comments
Open

Decorators #5

bashleigh opened this issue Jul 11, 2018 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@bashleigh
Copy link
Collaborator

bashleigh commented Jul 11, 2018

If possible create a series of decorators to achieve the following implementation

@AmqpConnection('default')
export default class MyAmqpProvider {

    @Consume('queue_name', { ack: false})
    async listen(message) {
        console.log('message', message.content.toString());
    }
    
    @Exchange('exchange_name', 'queue_name')
    async exchange() {
        return 'send me to the queue';
    }
}
@anhvu3594
Copy link

@bashleigh Thank you for your hard work. These features will be very helpful. Could you update the progress of them, please?

@bashleigh bashleigh self-assigned this Jan 9, 2019
@bashleigh
Copy link
Collaborator Author

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants