io.antmedia.cluster.IClusterStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ant-media-server-common Show documentation
Show all versions of ant-media-server-common Show documentation
Classes common for multiple Ant Media projects
package io.antmedia.cluster;
import java.util.List;
public interface IClusterStore {
public List getClusterNodes();
public ClusterNode getClusterNode(String nodeId);
public boolean addNode(ClusterNode node);
public boolean updateNode(String nodeId, ClusterNode node);
public boolean deleteNode(String nodeId);
public boolean registerAsNode();
}