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

com.yelstream.topp.standard.microprofile.health.FutureHealthCheck Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy