cz.proto.OperatorStatisticsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: job.proto
package cz.proto;
public interface OperatorStatisticsOrBuilder extends
// @@protoc_insertion_point(interface_extends:cz.proto.OperatorStatistics)
com.google.protobuf.MessageOrBuilder {
/**
* repeated uint64 records = 1;
* @return A list containing the records.
*/
java.util.List getRecordsList();
/**
* repeated uint64 records = 1;
* @return The count of records.
*/
int getRecordsCount();
/**
* repeated uint64 records = 1;
* @param index The index of the element to return.
* @return The records at the given index.
*/
long getRecords(int index);
/**
* uint64 max = 2;
* @return The max.
*/
long getMax();
/**
* uint64 min = 3;
* @return The min.
*/
long getMin();
/**
* uint64 sum = 4;
* @return The sum.
*/
long getSum();
/**
* uint64 avg = 5;
* @return The avg.
*/
long getAvg();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy