com.yelstream.topp.standard.microprofile.health.FutureHealthCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of topp-standard-microprofile-health Show documentation
Show all versions of topp-standard-microprofile-health Show documentation
Topp Standard MicroProfile Health addresses Eclipse Foundation MicroProfile Health.
The newest version!
package com.yelstream.topp.standard.microprofile.health;
import org.eclipse.microprofile.health.HealthCheckResponse;
import java.util.concurrent.CompletableFuture;
/**
* Health check procedure.
*
* @author Morten Sabroe Mortensen
* @version 1.0
* @since 2024-06-23
*/
@FunctionalInterface
public interface FutureHealthCheck {
/**
* Initiates the health check procedure.
* @return Handle to the asynchronously delivered result.
*/
CompletableFuture submitCall();
}