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

io.quarkus.smallrye.health.runtime.SmallRyeHealthGroupHandler Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.smallrye.health.runtime;

import io.smallrye.health.SmallRyeHealth;
import io.smallrye.health.SmallRyeHealthReporter;
import io.smallrye.mutiny.Uni;
import io.vertx.ext.web.RoutingContext;

public class SmallRyeHealthGroupHandler extends SmallRyeHealthHandlerBase {

    @Override
    protected Uni getHealth(SmallRyeHealthReporter reporter, RoutingContext ctx) {
        return reporter.getHealthGroupsAsync();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy