All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.antmedia.cluster.IClusterStore Maven / Gradle / Ivy

There is a newer version: 2.3.3.1
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy