
com.alibaba.dubbo.remoting.zookeeper.ZookeeperClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dubbo2 Show documentation
Show all versions of dubbo2 Show documentation
The all in one project of dubbo2
The newest version!
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();
}