Interface CountWorkflowExecutionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CountWorkflowExecutionsResponse,CountWorkflowExecutionsResponse.Builder
@Generated(value="protoc", comments="annotations:CountWorkflowExecutionsResponseOrBuilder.java.pb.meta") public interface CountWorkflowExecutionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCount()If `query` is not grouping by any field, the count is an approximate number of workflows that matches the query.CountWorkflowExecutionsResponse.AggregationGroupgetGroups(int index)`groups` contains the groups if the request is grouping by a field.intgetGroupsCount()`groups` contains the groups if the request is grouping by a field.java.util.List<CountWorkflowExecutionsResponse.AggregationGroup>getGroupsList()`groups` contains the groups if the request is grouping by a field.CountWorkflowExecutionsResponse.AggregationGroupOrBuildergetGroupsOrBuilder(int index)`groups` contains the groups if the request is grouping by a field.java.util.List<? extends CountWorkflowExecutionsResponse.AggregationGroupOrBuilder>getGroupsOrBuilderList()`groups` contains the groups if the request is grouping by a field.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCount
long getCount()
If `query` is not grouping by any field, the count is an approximate number of workflows that matches the query. If `query` is grouping by a field, the count is simply the sum of the counts of the groups returned in the response. This number can be smaller than the total number of workflows matching the query.
int64 count = 1;- Returns:
- The count.
-
getGroupsList
java.util.List<CountWorkflowExecutionsResponse.AggregationGroup> getGroupsList()
`groups` contains the groups if the request is grouping by a field. The list might not be complete, and the counts of each group is approximate.
repeated .temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.AggregationGroup groups = 2;
-
getGroups
CountWorkflowExecutionsResponse.AggregationGroup getGroups(int index)
`groups` contains the groups if the request is grouping by a field. The list might not be complete, and the counts of each group is approximate.
repeated .temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.AggregationGroup groups = 2;
-
getGroupsCount
int getGroupsCount()
`groups` contains the groups if the request is grouping by a field. The list might not be complete, and the counts of each group is approximate.
repeated .temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.AggregationGroup groups = 2;
-
getGroupsOrBuilderList
java.util.List<? extends CountWorkflowExecutionsResponse.AggregationGroupOrBuilder> getGroupsOrBuilderList()
`groups` contains the groups if the request is grouping by a field. The list might not be complete, and the counts of each group is approximate.
repeated .temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.AggregationGroup groups = 2;
-
getGroupsOrBuilder
CountWorkflowExecutionsResponse.AggregationGroupOrBuilder getGroupsOrBuilder(int index)
`groups` contains the groups if the request is grouping by a field. The list might not be complete, and the counts of each group is approximate.
repeated .temporal.api.workflowservice.v1.CountWorkflowExecutionsResponse.AggregationGroup groups = 2;
-
-