All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.tp.ke.booter.BtVertx Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.tp.ke.booter;

import io.vertx.core.Vertx;
import io.vertx.core.VertxOptions;

class BtVertx {

    private static final Vertx VERTX;

    static {
        /* Prepare another vert.x instance */
        final VertxOptions options = new VertxOptions();
        options.setMaxEventLoopExecuteTime(30000000000L);
        VERTX = Vertx.vertx(options);
    }

    static Vertx getVertx() {
        return VERTX;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy