![JAR search and dependency download from the Maven repository](/logo.png)
net.trajano.ms.gateway.providers.VertxBeanProvider Maven / Gradle / Ivy
package net.trajano.ms.gateway.providers;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import io.vertx.core.Vertx;
import io.vertx.core.VertxOptions;
import io.vertx.core.http.HttpClient;
import io.vertx.core.http.HttpClientOptions;
import io.vertx.core.http.HttpServer;
import io.vertx.core.http.HttpServerOptions;
import io.vertx.ext.web.Router;
/**
* Provides Vertx objects.
*
* @author Archimedes Trajano
*/
@Configuration
public class VertxBeanProvider {
@Bean
public HttpClient httpClient(final Vertx vertx,
final HttpClientOptions httpClientOptions) {
return vertx.createHttpClient(httpClientOptions);
}
@Bean
public HttpServer httpServer(final Vertx vertx,
final HttpServerOptions httpServerOptions) {
return vertx.createHttpServer(httpServerOptions);
}
@Bean
public Router router(final Vertx vertx) {
return Router.router(vertx);
}
@Bean
public Vertx vertx(final VertxOptions vertxOptions) {
return Vertx.vertx(vertxOptions);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy