The default deferred URL of /_ah/queue/deferred will be used unless an
alternate URL is explicitly specified. If you want to use the default URL for
a queue, specify _url=None. If you specify a different URL, you will need to
install the handler on that URL (see the module docstring for details).
Args
obj
The callable to execute. See module docstring for restrictions.
_countdown, _eta, _headers, _name, _target, _transactional, _url,
_retry_options, _queue: Passed through to the task queue - see the task
queue documentation for details.
*args
Positional arguments to call the callable with.
**kwargs
Any other keyword arguments are passed through to the callable.
Returns
A taskqueue.Task object which represents an enqueued callable.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-30 UTC."],[[["This function, `google.appengine.ext.deferred.defer`, allows for the delayed execution of a specified callable object."],["The function utilizes the default deferred URL (`/_ah/queue/deferred`) unless an alternative URL is explicitly provided."],["Arguments can be passed to the callable, including positional arguments and keyword arguments."],["The function returns a `taskqueue.Task` object, representing the enqueued callable task."],["Additional arguments such as `_countdown`, `_eta`, `_headers`, `_name`, `_target`, `_transactional`, `_url`, `_retry_options`, and `_queue` are passed through to the task queue and can be utilized for customization."]]],[]]