Uses of Enum
org.apache.zookeeper.CreateMode
Packages that use CreateMode
Package
Description
ZooKeeper server theory of operation
-
Uses of CreateMode in org.apache.zookeeper
Subclasses with type arguments of type CreateMode in org.apache.zookeeperModifier and TypeClassDescriptionenumCreateMode value determines how the znode is created on ZooKeeper.Methods in org.apache.zookeeper that return CreateModeModifier and TypeMethodDescriptionstatic CreateModeCreateMode.fromFlag(int flag) Map an integer value to a CreateMode valuestatic CreateModeCreateMode.fromFlag(int flag, CreateMode defaultMode) Map an integer value to a CreateMode valueCreateOptions.getCreateMode()static CreateModeReturns the enum constant of this type with the specified name.static CreateMode[]CreateMode.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.zookeeper with parameters of type CreateModeModifier and TypeMethodDescriptionstatic OpOp.create(String path, byte[] data, List<ACL> acl, CreateMode createMode) Constructs a create operation.static OpOp.create(String path, byte[] data, List<ACL> acl, CreateMode createMode, long ttl) Constructs a create operation.Transaction.create(String path, byte[] data, List<ACL> acl, CreateMode createMode) ZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode) Create a node with the given path.voidZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.Create2Callback cb, Object ctx) The asynchronous version of create.voidZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.Create2Callback cb, Object ctx, long ttl) The asynchronous version of create with ttl.voidZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode, AsyncCallback.StringCallback cb, Object ctx) The asynchronous version of create.Create a node with the given path and returns the Stat of that node.ZooKeeper.create(String path, byte[] data, List<ACL> acl, CreateMode createMode, Stat stat, long ttl) same asZooKeeper.create(String, byte[], List, CreateMode, Stat)but allows for specifying a TTL when mode isCreateMode.PERSISTENT_WITH_TTLorCreateMode.PERSISTENT_SEQUENTIAL_WITH_TTL.static CreateModeCreateMode.fromFlag(int flag, CreateMode defaultMode) Map an integer value to a CreateMode valuestatic CreateOptions.BuilderCreateOptions.newBuilder(List<ACL> acl, CreateMode createMode) Constructs a builder forCreateOptions. -
Uses of CreateMode in org.apache.zookeeper.retry
Methods in org.apache.zookeeper.retry with parameters of type CreateMode -
Uses of CreateMode in org.apache.zookeeper.server
Methods in org.apache.zookeeper.server with parameters of type CreateModeModifier and TypeMethodDescriptionstatic voidEphemeralType.validateTTL(CreateMode mode, long ttl) Utility to validate a create mode and a ttl