com.netflix.appinfo.HealthCheckCallback Maven / Gradle / Ivy
/*
* Copyright 2012 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.appinfo;
/**
* Applications can implement this interface and register a callback with the
* {@link com.netflix.discovery.EurekaClient#registerHealthCheckCallback(HealthCheckCallback)}.
*
*
* Your callback will be invoked every
* {@link EurekaInstanceConfig#getLeaseRenewalIntervalInSeconds()} if the
* instance is in {@link InstanceInfo.InstanceStatus#STARTING} status, we will
* delay the callback until the status changes.Returning a false to the
* checkHealth() method will mark the instance
* {@link InstanceInfo.InstanceStatus#DOWN} with eureka.
*
*
*
* Eureka server normally just relies on heartbeats to identify the
* status of an instance. Application could decide to implement their
* own healthpage check here or use the built-in jersey resource
* {@link HealthCheckResource}.
*
*
* @deprecated Use {@link com.netflix.appinfo.HealthCheckHandler} instead.
* @author Karthik Ranganathan, Greg Kim
*/
@Deprecated
public interface HealthCheckCallback {
/**
* If false, the instance will be marked
* {@link InstanceInfo.InstanceStatus#DOWN} with eureka. If the instance was
* already marked {@link InstanceInfo.InstanceStatus#DOWN} , returning true
* here will mark the instance back to
* {@link InstanceInfo.InstanceStatus#UP}.
*
* @return true if the call back returns healthy, false otherwise.
*/
boolean isHealthy();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy