coroutine
¤
call
¤
call(call: Call) -> Any
Make an asynchronous function call and return its result. If the function call fails with an error, the error is raised.
gather
¤
gather(*awaitables: Awaitable[Any]) -> list[Any]
Concurrently run a set of coroutines and block until all results are available. If any coroutine fails with an uncaught exception, it will be re-raised when awaiting a result here.