Search in sources :

Example 1 with VertxHttpComponent

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);
}
Also used : VertxHttpComponent(org.apache.camel.component.vertx.http.VertxHttpComponent) RuntimeValue(io.quarkus.runtime.RuntimeValue)

Aggregations

RuntimeValue (io.quarkus.runtime.RuntimeValue)1 VertxHttpComponent (org.apache.camel.component.vertx.http.VertxHttpComponent)1