org.zodiac.actuate.health.reactive.AppReactiveDiscoveryHealthIndicator Maven / Gradle / Ivy
package org.zodiac.actuate.health.reactive;
import org.springframework.boot.actuate.health.Health;
import reactor.core.publisher.Mono;
public interface AppReactiveDiscoveryHealthIndicator {
/**
* Provide the name of health indicator.
*
* @return a {@link String} that provides the name of health indicator, usually the name of the implementation.
*/
String getName();
/**
* Provide the indicator of health.
*
* @return a {@link Mono} that provides the {@link Health}
*/
Mono health();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy