View source on GitHub
|
QueueInfo tools.
QueueInfo is a library for working with QueueInfo records, describing task queue
entries for an application. QueueInfo loads the records from queue.yaml. To
learn more about the parameters you can specify in queue.yaml, review the
queue.yaml reference guide:
https://cloud.google.com/appengine/docs/python/config/queueref
Classes
class Acl: Controls the access control list for a single task queue.
class MalformedQueueConfiguration: The configuration file for the task queue is malformed.
class QueueEntry: Describes a single task queue.
class QueueInfoExternal: Describes all of the queue entries for an application.
class RetryParameters: Specifies the retry parameters for a single task queue.
Functions
LoadSingleQueue(...): Loads a queue.yaml file/string and returns a QueueInfoExternal object.
ParseRate(...): Parses a rate string in the form number/unit, or the literal 0.
ParseTaskAgeLimit(...): Parses a string representing the task's age limit (maximum allowed age).
ParseTotalStorageLimit(...): Parses a string representing the storage bytes limit.
TranslateRetryParameters(...): Populates a TaskQueueRetryParameters from a queueinfo.RetryParameters.
View source on GitHub