Source code distributed/asyncio.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
raise ImportError(
    """

The dask.distributed.AioClient object has been removed.
We recommend using the normal client with asynchonrous=True

        client = await Client(..., asynchronous=True)

and a version of Tornado >= 5.

Documentation: https://distributed.dask.org/en/latest/asynchronous.html
Example: https://examples.dask.org/applications/async-await.html
"""
)