chain_add
Executes an asynchronous Celery task chain that doubles the first input and then adds the second input to the result.
def chain_add(
x: int,
y: int
) - > null
Executes a Celery task chain that doubles the first input and then adds the second input to the result.
Parameters
| Name | Type | Description |
|---|---|---|
| x | int | The initial numeric value to be doubled in the first stage of the task chain |
| y | int | The numeric value to be added to the result of the first stage in the second stage of the task chain |
Returns
| Type | Description |
|---|---|
null | This function does not return a value; it triggers an asynchronous task execution. |