add_starmap_task
Registers a 'celery.starmap' task to the provided application that executes a task signature against an iterable of argument tuples.
def add_starmap_task(
app: Celery
) - > function
Registers the 'celery.starmap' task on the provided Celery application instance to enable parallel execution of a task over a list of argument tuples.
Parameters
| Name | Type | Description |
|---|---|---|
| app | Celery | The Celery application instance where the starmap task will be registered and finalized. |
Returns
| Type | Description |
|---|---|
function | The registered xstarmap task function which executes a signature against an iterable of arguments. |