Package com.google.datastore.admin.v1
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 long
getWorkCompleted()
The amount of work that has been completed.long
getWorkEstimated()
An estimate of how much work needs to be performed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWorkCompleted
long getWorkCompleted()
The amount of work that has been completed. Note that this may be greater than work_estimated.
int64 work_completed = 1;
- Returns:
- The workCompleted.
-
getWorkEstimated
long getWorkEstimated()
An estimate of how much work needs to be performed. May be zero if the work estimate is unavailable.
int64 work_estimated = 2;
- Returns:
- The workEstimated.
-
-