Interface ReactiveDiscoveryHealthIndicator
-
- All Known Implementing Classes:
ReactiveDiscoveryClientHealthIndicator
public interface ReactiveDiscoveryHealthIndicatorA health indicator interface specific to a reactive discovery client implementation.- Author:
- Tim Ysewyn
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Provide the name of health indicator.reactor.core.publisher.Mono<org.springframework.boot.actuate.health.Health>health()Provide the indicator of health.
-
-
-
Method Detail
-
getName
String getName()
Provide the name of health indicator.- Returns:
- a
Stringthat provides the name of health indicator, usually the name of the implementation.
-
health
reactor.core.publisher.Mono<org.springframework.boot.actuate.health.Health> health()
Provide the indicator of health.- Returns:
- a
Monothat provides theHealth
-
-