There is nothing within ansible itself to really help you from a concurrency perspective.
You likely can just spawn multiple threads using the threading library in Python. If it is custom, and you are not contributing it back, there are all sorts of 3rd party concurrency libraries out there (gevent for example), or those that are only included with Python3.5 or newer (asyncio, concurrent futures).