|
def | __init__ |
|
def | human_readable_oldest_task_eta |
|
def | human_readable_oldest_task_eta_delta |
|
def | get |
|
|
| name |
|
| mode |
|
| rate |
|
| bucket_size |
|
| tasks_in_queue |
|
| oldest_eta_usec |
|
Represents information about a Queue.
def google.appengine.tools.devappserver2.admin.taskqueue_utils.QueueInfo.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
mode, |
|
|
|
rate, |
|
|
|
bucket_size, |
|
|
|
tasks_in_queue, |
|
|
|
oldest_eta_usec |
|
) |
| |
Initializer for _QueueInfo.
Args:
name: The name of the queue e.g. "default".
mode: A taskqueue_service_pb.TaskQueueMode constant representing the queue
type e.g. PULL.
rate: The execution rate of the queue as a string e.g. "10/s". May be None
for pull queues.
bucket_size: An int representing the size of the queues token bucket.
tasks_in_queue: The number of tasks in the queue.
oldest_eta_usec: The eta of the oldest task in the queue in microseconds
from the epoch.
def google.appengine.tools.devappserver2.admin.taskqueue_utils.QueueInfo.get |
( |
|
cls, |
|
|
|
queue_names = frozenset() |
|
) |
| |
Returns a 2-tuple: (list of push _QueueInfo, list of pull _QueueInfo).
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/tools/devappserver2/admin/taskqueue_utils.py