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

io.quarkus.agroal.runtime.AgroalOpenTelemetryWrapper Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.agroal.runtime;

import java.util.function.Function;

import io.agroal.api.AgroalDataSource;

public class AgroalOpenTelemetryWrapper implements Function {

    @Override
    public AgroalDataSource apply(AgroalDataSource originalDataSource) {
        return new OpenTelemetryAgroalDataSource(originalDataSource);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy