log.info(String.format("Creating new Vert.x instance '%s:%s' ...", endpointConfiguration.getHost(), 0L));
VertxFactory.newVertx(0, endpointConfiguration.getHost(), asyncLoadingHandler);
}
// Wait for full loading
while (!loading.complete()) {
try {
log.debug("Waiting for Vert.x instance to startup");
Thread.sleep(250L);
} catch (InterruptedException e) {
log.warn("Interrupted while waiting for Vert.x instance startup", e);