Interface FlushRowsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FlushRowsRequest
,FlushRowsRequest.Builder
public interface FlushRowsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Int64Value
getOffset()
Ending offset of the flush operation.com.google.protobuf.Int64ValueOrBuilder
getOffsetOrBuilder()
Ending offset of the flush operation.String
getWriteStream()
Required.com.google.protobuf.ByteString
getWriteStreamBytes()
Required.boolean
hasOffset()
Ending offset of the flush operation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWriteStream
String getWriteStream()
Required. The stream that is the target of the flush operation.
string write_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The writeStream.
-
getWriteStreamBytes
com.google.protobuf.ByteString getWriteStreamBytes()
Required. The stream that is the target of the flush operation.
string write_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for writeStream.
-
hasOffset
boolean hasOffset()
Ending offset of the flush operation. Rows before this offset(including this offset) will be flushed.
.google.protobuf.Int64Value offset = 2;
- Returns:
- Whether the offset field is set.
-
getOffset
com.google.protobuf.Int64Value getOffset()
Ending offset of the flush operation. Rows before this offset(including this offset) will be flushed.
.google.protobuf.Int64Value offset = 2;
- Returns:
- The offset.
-
getOffsetOrBuilder
com.google.protobuf.Int64ValueOrBuilder getOffsetOrBuilder()
Ending offset of the flush operation. Rows before this offset(including this offset) will be flushed.
.google.protobuf.Int64Value offset = 2;
-
-