Class EurekaRegistryService
- java.lang.Object
-
- org.kiwiproject.registry.eureka.server.EurekaRegistryService
-
- All Implemented Interfaces:
RegistryService
public class EurekaRegistryService extends Object implements RegistryService
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_DATA_CENTER_INFO_CLASSFunny story ...static StringDEFAULT_DATA_CENTER_NAMEstatic StringLEASE_DURATION_IN_SECONDSKey for lease info representing lease duration in seconds.static StringLEASE_RENEWAL_INTERVAL_IN_SECONDSKey for lease info representing renewal interval in seconds.static intMAX_AWAIT_REGISTRATION_CONFIRMATION_TRIESMaximum number of attempts we will make to await confirmation that we're registered with Eureka.static intMAX_REGISTRATION_ATTEMPTSMaximum number of attempts we will make trying to register with Eureka (via POST)
-
Constructor Summary
Constructors Constructor Description EurekaRegistryService(EurekaRegistrationConfig config, EurekaRestClient client, org.kiwiproject.base.KiwiEnvironment environment)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServiceInstancecreateCandidateFrom(ServiceInfo serviceInfo)Creates a newServiceInstanceinstance from aServiceInfothat can be registered with the registry server.ServiceInstanceregister(ServiceInstance serviceToRegister)Registers aServiceInstancewith the registry server and returns a new instance containing information about the registered instance.voidunregister()Unregisters any registrations that were previously registered.ServiceInstanceupdateStatus(ServiceInstance.Status newStatus)Sends an update to the registry server to inform of a service status change
-
-
-
Field Detail
-
DEFAULT_DATA_CENTER_INFO_CLASS
public static final String DEFAULT_DATA_CENTER_INFO_CLASS
Funny story ... this class doesn't actually exist. It's for "backwards compatibility.See com.netflix.discovery.converters.jackson.DataCenterTypeInfoResolver for details. (NOTE: javadoc annotation not used to avoid unnecessary errors.)
- See Also:
- Constant Field Values
-
DEFAULT_DATA_CENTER_NAME
public static final String DEFAULT_DATA_CENTER_NAME
- See Also:
- Constant Field Values
-
LEASE_DURATION_IN_SECONDS
public static final String LEASE_DURATION_IN_SECONDS
Key for lease info representing lease duration in seconds.- See Also:
- Constant Field Values
-
LEASE_RENEWAL_INTERVAL_IN_SECONDS
public static final String LEASE_RENEWAL_INTERVAL_IN_SECONDS
Key for lease info representing renewal interval in seconds.- See Also:
- Constant Field Values
-
MAX_AWAIT_REGISTRATION_CONFIRMATION_TRIES
public static final int MAX_AWAIT_REGISTRATION_CONFIRMATION_TRIES
Maximum number of attempts we will make to await confirmation that we're registered with Eureka.- See Also:
- Constant Field Values
-
MAX_REGISTRATION_ATTEMPTS
public static final int MAX_REGISTRATION_ATTEMPTS
Maximum number of attempts we will make trying to register with Eureka (via POST)- See Also:
- Constant Field Values
-
-
Constructor Detail
-
EurekaRegistryService
public EurekaRegistryService(EurekaRegistrationConfig config, EurekaRestClient client, org.kiwiproject.base.KiwiEnvironment environment)
-
-
Method Detail
-
createCandidateFrom
public ServiceInstance createCandidateFrom(ServiceInfo serviceInfo)
Description copied from interface:RegistryServiceCreates a newServiceInstanceinstance from aServiceInfothat can be registered with the registry server.- Specified by:
createCandidateFromin interfaceRegistryService- Parameters:
serviceInfo- Service information that will be used to setup a new instance to be registered.- Returns:
- The
ServiceInstanceobject that was created
-
register
public ServiceInstance register(ServiceInstance serviceToRegister)
Description copied from interface:RegistryServiceRegisters aServiceInstancewith the registry server and returns a new instance containing information about the registered instance.- Specified by:
registerin interfaceRegistryService- Parameters:
serviceToRegister- The service information to register- Returns:
- The service instance that was registered
-
updateStatus
public ServiceInstance updateStatus(ServiceInstance.Status newStatus)
Description copied from interface:RegistryServiceSends an update to the registry server to inform of a service status change- Specified by:
updateStatusin interfaceRegistryService- Parameters:
newStatus- The new status that will be sent- Returns:
- a copy of the original
ServiceInstancewith the new status set
-
unregister
public void unregister()
Description copied from interface:RegistryServiceUnregisters any registrations that were previously registered. This should be a NO-OP if nothing has ever been registered.- Specified by:
unregisterin interfaceRegistryService
-
-