Skip to main content

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

NameTypeDescription
appCeleryThe Celery application instance where the starmap task will be registered and finalized.

Returns

TypeDescription
functionThe registered xstarmap task function which executes a signature against an iterable of arguments.