Interface HealthCheckFilter

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface HealthCheckFilter
    Health check filter definition.
    • Method Detail

      • test

        boolean test​(HealthCheck check)
        Determine if the given HealthCheck has to be filtered out.
        Parameters:
        check - the check to evaluate.
        Returns:
        true if the given check has to be filtered out.