Asynchronous version of `map()` method.
(self, func, iterable, chunksize=None, callback=None,
error_callback=None)
| 461 | return result |
| 462 | |
| 463 | def map_async(self, func, iterable, chunksize=None, callback=None, |
| 464 | error_callback=None): |
| 465 | ''' |
| 466 | Asynchronous version of `map()` method. |
| 467 | ''' |
| 468 | return self._map_async(func, iterable, mapstar, chunksize, callback, |
| 469 | error_callback) |
| 470 | |
| 471 | def _map_async(self, func, iterable, mapper, chunksize=None, callback=None, |
| 472 | error_callback=None): |