org.bitsofinfo.hazelcast.discovery.consul.HealthCheckBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-consul-discovery-spi Show documentation
Show all versions of hazelcast-consul-discovery-spi Show documentation
hazelcast-consul-discovery-spi - Consul based discovery strategy SPI for Hazelcast enabled applications
The newest version!
package org.bitsofinfo.hazelcast.discovery.consul;
import java.util.Map;
import com.hazelcast.cluster.Address;
import com.orbitz.consul.model.agent.Registration.RegCheck;
/**
* Interface to define health check operations
*
* @author bmudda
*
*/
public interface HealthCheckBuilder {
/**
* Method to build a registration check object
*
* @param registratorConfig
* @param localAddress
* @return RegCheck object
*/
public RegCheck buildRegistrationCheck( Map registratorConfig, Address localAddress);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy