ids
Returns a tuple of root_id, parent_id and the argument passed as i.
def ids(
self: Task,
i: any
) - > tuple
Returns a tuple of root_id, parent_id and the argument passed as i.
Parameters
| Name | Type | Description |
|---|---|---|
| self | Task | The Celery task instance bound to the function. |
| i | any | The arbitrary value to be included as the third element in the returned tuple. |
Returns
| Type | Description |
|---|---|
tuple | A tuple containing the Celery root task ID, the parent task ID, and the original input value. |