The AsyncIO objects wrap Overlapped IO – Microsoft’s answer to asynchronous IO – to allow fairly easy access.
Bases: winsys.core._WinSysObject
Returns: | True if the IO has completed |
---|
Return the pyobject of the underlying event so that this object can be waited on by the ipc.all() or ipc.any() functions
Wait for the IO to complete in such a way that the wait can be interrupted by a KeyboardInterrupt.
Bases: asyncio.AsyncIO
Bases: asyncio.AsyncIO
Wait until the IO has completed and return the data from the read. This is expected to be called after is_complete is true.
See also