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

io.quarkus.jaeger.deployment.JaegerEnabled Maven / Gradle / Ivy

There is a newer version: 3.12.3
Show newest version
package io.quarkus.jaeger.deployment;

import java.util.function.BooleanSupplier;

import io.quarkus.jaeger.runtime.JaegerBuildTimeConfig;

public class JaegerEnabled implements BooleanSupplier {

    private final JaegerBuildTimeConfig buildTimeConfig;

    public JaegerEnabled(JaegerBuildTimeConfig buildTimeConfig) {
        this.buildTimeConfig = buildTimeConfig;
    }

    @Override
    public boolean getAsBoolean() {
        return buildTimeConfig.enabled;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy