com.fasterxml.clustermate.client.ServerNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-client Show documentation
Show all versions of clustermate-client Show documentation
Building blocks for client libraries that access
ClusterMate-based service.
package com.fasterxml.clustermate.client;
import com.fasterxml.storemate.shared.IpAndPort;
/**
* Minimal information about a server node; information that must be
* accessible for per-call (single-node) requests and responses.
*/
public interface ServerNode
{
/**
* Address (protocol, host name, port number) of the server node
*/
public IpAndPort getAddress();
}