de.otto.edison.registry.client.RegistryClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-core Show documentation
Show all versions of edison-core Show documentation
Core library for all Edison libraries.
package de.otto.edison.registry.client;
/**
* A client to access a discovery service.
*
* @author Guido Steinacker
* @since 16.09.15
*/
public interface RegistryClient {
/**
* Registers the service at a configured ServiceDiscovery.
*/
void registerService();
boolean isRunning();
}