Package com.google.cloud.tasks.v2beta3
Interface QueueStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueueStats
,QueueStats.Builder
public interface QueueStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getConcurrentDispatchesCount()
Output only.double
getEffectiveExecutionRate()
Output only.long
getExecutedLastMinuteCount()
Output only.com.google.protobuf.Timestamp
getOldestEstimatedArrivalTime()
Output only.com.google.protobuf.TimestampOrBuilder
getOldestEstimatedArrivalTimeOrBuilder()
Output only.long
getTasksCount()
Output only.boolean
hasOldestEstimatedArrivalTime()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTasksCount
long getTasksCount()
Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven't been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.
int64 tasks_count = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The tasksCount.
-
hasOldestEstimatedArrivalTime
boolean hasOldestEstimatedArrivalTime()
Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
.google.protobuf.Timestamp oldest_estimated_arrival_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the oldestEstimatedArrivalTime field is set.
-
getOldestEstimatedArrivalTime
com.google.protobuf.Timestamp getOldestEstimatedArrivalTime()
Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
.google.protobuf.Timestamp oldest_estimated_arrival_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The oldestEstimatedArrivalTime.
-
getOldestEstimatedArrivalTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getOldestEstimatedArrivalTimeOrBuilder()
Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
.google.protobuf.Timestamp oldest_estimated_arrival_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getExecutedLastMinuteCount
long getExecutedLastMinuteCount()
Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.
int64 executed_last_minute_count = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The executedLastMinuteCount.
-
getConcurrentDispatchesCount
long getConcurrentDispatchesCount()
Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
int64 concurrent_dispatches_count = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The concurrentDispatchesCount.
-
getEffectiveExecutionRate
double getEffectiveExecutionRate()
Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.
double effective_execution_rate = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The effectiveExecutionRate.
-
-