use of org.apache.camel.component.vertx.http.VertxHttpComponent in project camel-quarkus by apache.
the class CamelVertxHttpRecorder method createVertxHttpComponent.
public RuntimeValue<?> createVertxHttpComponent(RuntimeValue<Vertx> vertx) {
VertxHttpComponent component = new VertxHttpComponent();
component.setVertx(vertx.getValue());
return new RuntimeValue<>(component);
}
Aggregations