Examples of MetricsBinder


Examples of com.englishtown.vertx.hk2.MetricsBinder

     */
    @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);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.