All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.vertx.web.runtime.RoutingExchangeImpl Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy