Package com.clickhouse.client
Class ClickHouseResponseSummary.Progress
- java.lang.Object
-
- com.clickhouse.client.ClickHouseResponseSummary.Progress
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ClickHouseResponseSummary
public static final class ClickHouseResponseSummary.Progress extends Object implements Serializable
Progress of a query.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Progress(long read_rows, long read_bytes, long total_rows_to_read, long written_rows, long written_bytes)Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetReadBytes()longgetReadRows()longgetTotalRowsToRead()longgetWrittenBytes()longgetWrittenRows()
-
-
-
Constructor Detail
-
Progress
public Progress(long read_rows, long read_bytes, long total_rows_to_read, long written_rows, long written_bytes)Default constructor.- Parameters:
read_rows- Number of rows readread_bytes- Volume of data read in bytestotal_rows_to_read- Total number of rows to be readwritten_rows- Number of rows writtenwritten_bytes- Volume of data written in bytes
-
-