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

com.alibaba.dubbo.remoting.zookeeper.ZookeeperClient Maven / Gradle / Ivy

package com.alibaba.dubbo.remoting.zookeeper;

import java.util.List;

import com.alibaba.dubbo.common.URL;

public interface ZookeeperClient {

	void create(String path, boolean ephemeral);

	void delete(String path);

	List getChildren(String path);

	List addChildListener(String path, ChildListener listener);

	void removeChildListener(String path, ChildListener listener);

	void addStateListener(StateListener listener);
	
	void removeStateListener(StateListener listener);

	boolean isConnected();

	void close();

	URL getUrl();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy