public abstract class KeyOffset implements Serializable
Represents the offset of a row key in a table.
Implements
SerializableStatic Methods
create(ByteString key, long offsetBytes)
public static KeyOffset create(ByteString key, long offsetBytes)
Parameters | |
---|---|
Name | Description |
key |
ByteString |
offsetBytes |
long |
Returns | |
---|---|
Type | Description |
KeyOffset |
Constructors
KeyOffset()
public KeyOffset()
Methods
getKey()
public abstract ByteString getKey()
A row key value that is returned as part of the response of com.google.cloud.bigtable.data.v2.BigtableDataClient#sampleRowKeysAsync(String). The key represents end boundary of one of the contiguous sections in a list of approximately equal sized sections.
Note that row key may not have ever been written to or read from, and users should therefore not make any assumptions about the row key structure that are specific to their use case.
Returns | |
---|---|
Type | Description |
ByteString |
getOffsetBytes()
public abstract long getOffsetBytes()
Approximate total storage space used by all rows in the table which precede #getKey(). Buffering the contents of all rows between two subsequent samples would require space roughly equal to the difference in their #getOffsetBytes() fields.
Returns | |
---|---|
Type | Description |
long |