Package com.google.bigtable.v2
Interface ReadChangeStreamResponse.HeartbeatOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadChangeStreamResponse.Heartbeat
,ReadChangeStreamResponse.Heartbeat.Builder
- Enclosing class:
- ReadChangeStreamResponse
public static interface ReadChangeStreamResponse.HeartbeatOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamContinuationToken
getContinuationToken()
A token that can be provided to a subsequent `ReadChangeStream` call to pick up reading at the current stream position.StreamContinuationTokenOrBuilder
getContinuationTokenOrBuilder()
A token that can be provided to a subsequent `ReadChangeStream` call to pick up reading at the current stream position.com.google.protobuf.Timestamp
getEstimatedLowWatermark()
An estimate of the commit timestamp that is usually lower than or equal to any timestamp for a record that will be delivered in the future on the stream.com.google.protobuf.TimestampOrBuilder
getEstimatedLowWatermarkOrBuilder()
An estimate of the commit timestamp that is usually lower than or equal to any timestamp for a record that will be delivered in the future on the stream.boolean
hasContinuationToken()
A token that can be provided to a subsequent `ReadChangeStream` call to pick up reading at the current stream position.boolean
hasEstimatedLowWatermark()
An estimate of the commit timestamp that is usually lower than or equal to any timestamp for a record that will be delivered in the future on the stream.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasContinuationToken
boolean hasContinuationToken()
A token that can be provided to a subsequent `ReadChangeStream` call to pick up reading at the current stream position.
.google.bigtable.v2.StreamContinuationToken continuation_token = 1;
- Returns:
- Whether the continuationToken field is set.
-
getContinuationToken
StreamContinuationToken getContinuationToken()
A token that can be provided to a subsequent `ReadChangeStream` call to pick up reading at the current stream position.
.google.bigtable.v2.StreamContinuationToken continuation_token = 1;
- Returns:
- The continuationToken.
-
getContinuationTokenOrBuilder
StreamContinuationTokenOrBuilder getContinuationTokenOrBuilder()
A token that can be provided to a subsequent `ReadChangeStream` call to pick up reading at the current stream position.
.google.bigtable.v2.StreamContinuationToken continuation_token = 1;
-
hasEstimatedLowWatermark
boolean hasEstimatedLowWatermark()
An estimate of the commit timestamp that is usually lower than or equal to any timestamp for a record that will be delivered in the future on the stream. It is possible that, under particular circumstances that a future record has a timestamp is is lower than a previously seen timestamp. For an example usage see https://beam.apache.org/documentation/basics/#watermarks
.google.protobuf.Timestamp estimated_low_watermark = 2;
- Returns:
- Whether the estimatedLowWatermark field is set.
-
getEstimatedLowWatermark
com.google.protobuf.Timestamp getEstimatedLowWatermark()
An estimate of the commit timestamp that is usually lower than or equal to any timestamp for a record that will be delivered in the future on the stream. It is possible that, under particular circumstances that a future record has a timestamp is is lower than a previously seen timestamp. For an example usage see https://beam.apache.org/documentation/basics/#watermarks
.google.protobuf.Timestamp estimated_low_watermark = 2;
- Returns:
- The estimatedLowWatermark.
-
getEstimatedLowWatermarkOrBuilder
com.google.protobuf.TimestampOrBuilder getEstimatedLowWatermarkOrBuilder()
An estimate of the commit timestamp that is usually lower than or equal to any timestamp for a record that will be delivered in the future on the stream. It is possible that, under particular circumstances that a future record has a timestamp is is lower than a previously seen timestamp. For an example usage see https://beam.apache.org/documentation/basics/#watermarks
.google.protobuf.Timestamp estimated_low_watermark = 2;
-
-