Create/spawn a new async task.
| PARAMETER |
DESCRIPTION |
coroutine
|
The asynchronous method to create as a task.
TYPE:
Callable[[Any], Coroutine[Any, Any, None]]
|
name
|
The visible name of this task.
TYPE:
str
DEFAULT:
None
|
| RETURNS |
DESCRIPTION |
asyncio.Task[None]
|
The created/spawned task.
|