Package io.pravega.client.tables
Class TableEntryUpdate
- java.lang.Object
-
- io.pravega.client.tables.TableModification
-
- io.pravega.client.tables.TableEntryUpdate
-
public abstract class TableEntryUpdate extends TableModification
Defines aTableModificationthat updates aTableKeywith a new value.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffergetValue()The new value to associate theTableKeywith.booleanisRemoval()Gets a value indicating whether this modification attempts to remove theTableKeyor not.-
Methods inherited from class io.pravega.client.tables.TableModification
getKey, getVersion
-
-
-
-
Method Detail
-
isRemoval
public boolean isRemoval()
Description copied from class:TableModificationGets a value indicating whether this modification attempts to remove theTableKeyor not.- Specified by:
isRemovalin classTableModification- Returns:
- True if removal, false otherwise.
-
-