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

com.englishtown.vertx.zookeeper.builders.CreateBuilder Maven / Gradle / Ivy

The newest version!
package com.englishtown.vertx.zookeeper.builders;

import org.apache.zookeeper.CreateMode;

/**
 * ZooKeeper operation builder to create a z-node
 */
public interface CreateBuilder extends
        ZooKeeperOperationBuilder,
        Pathable,
        ACLable,
        Dataable {

    CreateBuilder creatingParentsIfNeeded();

    CreateBuilder withMode(CreateMode mode);

    CreateBuilder withProtection();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy