io.quarkus.vertx.web.runtime.RoutingExchangeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-reactive-routes Show documentation
Show all versions of quarkus-reactive-routes Show documentation
REST framework offering the route model to define non blocking endpoints
package io.quarkus.vertx.web.runtime;
import io.quarkus.vertx.web.RoutingExchange;
import io.vertx.ext.web.RoutingContext;
public class RoutingExchangeImpl implements RoutingExchange {
private final RoutingContext context;
public RoutingExchangeImpl(RoutingContext context) {
this.context = context;
}
@Override
public RoutingContext context() {
return context;
}
}