Search in sources :

Example 1 with MyWatcher

use of org.apache.zookeeper.server.jersey.SetTest.MyWatcher in project zookeeper by apache.

the class Base method setUp.

@Before
public void setUp() throws Exception {
    RestCfg cfg = new RestCfg(new ByteArrayInputStream(String.format("rest.port=%s\n" + "rest.endpoint.1=%s;%s\n", GRIZZLY_PORT, CONTEXT_PATH, ZKHOSTPORT).getBytes()));
    rest = new RestMain(cfg);
    rest.start();
    zk = new ZooKeeper(ZKHOSTPORT, 30000, new MyWatcher());
    client = Client.create();
    znodesr = client.resource(BASEURI).path("znodes/v1");
    sessionsr = client.resource(BASEURI).path("sessions/v1/");
}
Also used : RestCfg(org.apache.zookeeper.server.jersey.cfg.RestCfg) ZooKeeper(org.apache.zookeeper.ZooKeeper) ByteArrayInputStream(java.io.ByteArrayInputStream) MyWatcher(org.apache.zookeeper.server.jersey.SetTest.MyWatcher) Before(org.junit.Before)

Example 2 with MyWatcher

use of org.apache.zookeeper.server.jersey.SetTest.MyWatcher in project zookeeper by apache.

the class Base method createBaseZNode.

protected static String createBaseZNode() throws Exception {
    ZooKeeper zk = new ZooKeeper(ZKHOSTPORT, 30000, new MyWatcher());
    String baseZnode = zk.create("/test-", null, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT_SEQUENTIAL);
    zk.close();
    return baseZnode;
}
Also used : ZooKeeper(org.apache.zookeeper.ZooKeeper) MyWatcher(org.apache.zookeeper.server.jersey.SetTest.MyWatcher)

Aggregations

ZooKeeper (org.apache.zookeeper.ZooKeeper)2 MyWatcher (org.apache.zookeeper.server.jersey.SetTest.MyWatcher)2 ByteArrayInputStream (java.io.ByteArrayInputStream)1 RestCfg (org.apache.zookeeper.server.jersey.cfg.RestCfg)1 Before (org.junit.Before)1