Package com.google.dataflow.v1beta3
Interface ProgressTimeseriesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProgressTimeseries
,ProgressTimeseries.Builder
public interface ProgressTimeseriesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getCurrentProgress()
The current progress of the component, in the range [0,1].ProgressTimeseries.Point
getDataPoints(int index)
History of progress for the component.int
getDataPointsCount()
History of progress for the component.List<ProgressTimeseries.Point>
getDataPointsList()
History of progress for the component.ProgressTimeseries.PointOrBuilder
getDataPointsOrBuilder(int index)
History of progress for the component.List<? extends ProgressTimeseries.PointOrBuilder>
getDataPointsOrBuilderList()
History of progress for the component.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCurrentProgress
double getCurrentProgress()
The current progress of the component, in the range [0,1].
double current_progress = 1;
- Returns:
- The currentProgress.
-
getDataPointsList
List<ProgressTimeseries.Point> getDataPointsList()
History of progress for the component. Points are sorted by time.
repeated .google.dataflow.v1beta3.ProgressTimeseries.Point data_points = 2;
-
getDataPoints
ProgressTimeseries.Point getDataPoints(int index)
History of progress for the component. Points are sorted by time.
repeated .google.dataflow.v1beta3.ProgressTimeseries.Point data_points = 2;
-
getDataPointsCount
int getDataPointsCount()
History of progress for the component. Points are sorted by time.
repeated .google.dataflow.v1beta3.ProgressTimeseries.Point data_points = 2;
-
getDataPointsOrBuilderList
List<? extends ProgressTimeseries.PointOrBuilder> getDataPointsOrBuilderList()
History of progress for the component. Points are sorted by time.
repeated .google.dataflow.v1beta3.ProgressTimeseries.Point data_points = 2;
-
getDataPointsOrBuilder
ProgressTimeseries.PointOrBuilder getDataPointsOrBuilder(int index)
History of progress for the component. Points are sorted by time.
repeated .google.dataflow.v1beta3.ProgressTimeseries.Point data_points = 2;
-
-