class documentation

class AsyncioAsyncDriver: (source)

View In Hierarchy

Driver for Future-flavored awaitables.

See Also
fritter.repeat.Async
TimeDriver
Method complete The asynchronous operation completed successfully.
Method newWithCancel Create a new Future with the given callback to execute when cancelled.
Method runAsync Run the given task on the event loop with asyncio.create_task.
Class Variable _loop Undocumented
def complete(self, asyncObj: Future[None]): (source)

The asynchronous operation completed successfully.

def newWithCancel(self, cancel: Callable[[], None]) -> Future[None]: (source)

Create a new Future with the given callback to execute when cancelled.

def runAsync(self, coroutine: Coroutine[Future[None], Any, Any]) -> Future[None]: (source)

Run the given task on the event loop with asyncio.create_task.