Package com.clickhouse.client.grpc.impl
Interface ProgressOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Progress,Progress.Builder
public interface ProgressOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetReadBytes()uint64 read_bytes = 2;longgetReadRows()uint64 read_rows = 1;longgetTotalRowsToRead()uint64 total_rows_to_read = 3;longgetWrittenBytes()uint64 written_bytes = 5;longgetWrittenRows()uint64 written_rows = 4;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getReadRows
long getReadRows()
uint64 read_rows = 1;- Returns:
- The readRows.
-
getReadBytes
long getReadBytes()
uint64 read_bytes = 2;- Returns:
- The readBytes.
-
getTotalRowsToRead
long getTotalRowsToRead()
uint64 total_rows_to_read = 3;- Returns:
- The totalRowsToRead.
-
getWrittenRows
long getWrittenRows()
uint64 written_rows = 4;- Returns:
- The writtenRows.
-
getWrittenBytes
long getWrittenBytes()
uint64 written_bytes = 5;- Returns:
- The writtenBytes.
-
-