Package com.englishtown.vertx.hk2

Examples of com.englishtown.vertx.hk2.HK2VerticleFactory


     * Implement to provide binding definitions using the exposed binding
     * methods.
     */
    @Override
    protected void configure() {
        install(new HK2JerseyBinder(), new JerseyMetricsBinder());
    }
View Full Code Here


     * methods.
     */
    @Override
    protected void configure() {

        install(new HK2JerseyBinder());

        bind(ReqProcessor1.class).to(VertxRequestProcessor.class).ranked(10);
        bind(ReqProcessor2.class).to(VertxRequestProcessor.class).ranked(100);

    }
View Full Code Here

    @Override
    public void setUp() throws Exception {
        super.setUp();

        locator = ServiceLocatorFactory.getInstance().create(null);
        ServiceLocatorUtilities.bind(locator, new HK2VertxBinder(vertx), new WhenHK2JerseyBinder(), new HK2WhenBinder());

        config = loadConfig();
        whenVertx = locator.getService(WhenVertx.class);
        whenHttpClient = locator.getService(WhenHttpClient.class);
View Full Code Here

     */
    @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

    @Override
    public void setUp() throws Exception {
        super.setUp();

        locator = ServiceLocatorFactory.getInstance().create(null);
        ServiceLocatorUtilities.bind(locator, new HK2VertxBinder(vertx), new WhenHK2JerseyBinder(), new HK2WhenBinder());

        config = loadConfig();
        whenVertx = locator.getService(WhenVertx.class);
        whenHttpClient = locator.getService(WhenHttpClient.class);
View Full Code Here

TOP

Related Classes of com.englishtown.vertx.hk2.HK2VerticleFactory

Copyright © 2018 www.massapicom. 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.