Java org.apache.zookeeper CreateMode fields, constructors, methods, implement or subclass

Example usage for Java org.apache.zookeeper CreateMode fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.zookeeper CreateMode.

The text is from its open source code.

Field

CreateModePERSISTENT
The znode will not be automatically deleted upon client's disconnect.
CreateModePERSISTENT_SEQUENTIAL
The znode will not be automatically deleted upon client's disconnect, and its name will be appended with a monotonically increasing number.
CreateModeEPHEMERAL
The znode will be deleted upon the client's disconnect.
CreateModeEPHEMERAL_SEQUENTIAL
The znode will be deleted upon the client's disconnect, and its name will be appended with a monotonically increasing number.
CreateModeCONTAINER
The znode will be a container node.
CreateModePERSISTENT_WITH_TTL
The znode will not be automatically deleted upon client's disconnect.

Method

CreateModefromFlag(int flag)
Map an integer value to a CreateMode value
booleanisEphemeral()
booleanisSequential()
inttoFlag()