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 aTableModification
that updates aTableKey
with a new value.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffer
getValue()
The new value to associate theTableKey
with.boolean
isRemoval()
Gets a value indicating whether this modification attempts to remove theTableKey
or not.-
Methods inherited from class io.pravega.client.tables.TableModification
getKey, getVersion
-
-
-
-
Method Detail
-
isRemoval
public boolean isRemoval()
Description copied from class:TableModification
Gets a value indicating whether this modification attempts to remove theTableKey
or not.- Specified by:
isRemoval
in classTableModification
- Returns:
- True if removal, false otherwise.
-
-