org.zodiac.actuate.health.AppReactiveHealthIndicator Maven / Gradle / Ivy
package org.zodiac.actuate.health;
import org.springframework.boot.actuate.health.Health;
import reactor.core.publisher.Mono;
@FunctionalInterface
public interface AppReactiveHealthIndicator extends AppReactiveHealthContributor {
/**
* Provide the indicator of health.
*
* @return a {@link Mono} that provides the {@link Health}
*/
Mono health();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy