ID EN
Multiprocessing

starmap_async

Python 3.11

A combination of starmap() and map_async() that iterates over iterable of iterables and calls func with the iterables unpacked. Returns a result object.

Syntax

PYTHON
starmap_async(func, iterable[, chunksize[, callback[, error_callback]]])

See Also

starmap() map_async()