Package io.pravega.client.tables
Class KeyVersion
- java.lang.Object
-
- io.pravega.client.tables.KeyVersion
-
- All Implemented Interfaces:
java.io.Serializable
public class KeyVersion extends java.lang.Object implements java.io.SerializableVersion of a Key in a Table.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static KeyVersionNO_VERSIONKeyVersionthat indicates no specific version is desired.static KeyVersionNOT_EXISTSKeyVersionthat indicates theTableKeymust not exist.
-
-
-
Field Detail
-
NO_VERSION
public static final KeyVersion NO_VERSION
KeyVersionthat indicates no specific version is desired. Using this will result in an unconditional update or removal being performed. SeeKeyValueTablefor details on conditional/unconditional updates.
-
NOT_EXISTS
public static final KeyVersion NOT_EXISTS
KeyVersionthat indicates theTableKeymust not exist. Using this will result in an conditional update or removal being performed, conditioned on theTableKeynot existing at the time of the operation. SeeKeyValueTablefor details on conditional/unconditional updates.
-
-