Skip to content

Instantly share code, notes, and snippets.

@fabiojose
Last active May 15, 2019 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiojose/ea845481042f51d42d2e0f62aaefe89b to your computer and use it in GitHub Desktop.
Save fabiojose/ea845481042f51d42d2e0f62aaefe89b to your computer and use it in GitHub Desktop.
MyDependency
public class MyDependency extends AbstractVerticle {
@Override
public void start() {
vertx.eventBus()
.consumer("my", (message) -> {
message.reply("bar");
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment