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

Basic Vertx CDI integration #757

Closed
mkouba opened this issue Feb 5, 2019 · 0 comments
Closed

Basic Vertx CDI integration #757

mkouba opened this issue Feb 5, 2019 · 0 comments
Assignees
Milestone

Comments

@mkouba
Copy link
Contributor

mkouba commented Feb 5, 2019

Make it possible to automatically register a business method as a Vertx message consumer:

class SimpleBean {
    @ConsumeEvent("foo") // -> EventBus.consumer("foo").handler(m -> m.reply(m.body().toUpperCase()))
    String send(String message) {
       return message.toUpperCase();
    }
}
@mkouba mkouba added this to the 0.8.0 milestone Feb 5, 2019
@mkouba mkouba self-assigned this Feb 5, 2019
@mkouba mkouba closed this as completed in 5f0c882 Feb 5, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant