*/
@Override
protected void configure() {
// Ensure the metrics binder has run (safe to run multiple times)
install(new MetricsBinder());
// Run request processor first so give it a high rank
bind(RequestProcessor.class).to(VertxRequestProcessor.class).ranked(999);
// Run response processor last so give it a low rank
bind(ResponseProcessor.class).to(VertxResponseProcessor.class).ranked(-999);