asyncio.Handle
  • References/Python/Python/Inputouput

class asyncio.Handle A callback wrapper object returned by AbstractEventLoop.call_soon(), AbstractEventLoop

2025-01-10 15:47:30
asyncio.iscoroutine()
  • References/Python/Python/Inputouput

asyncio.iscoroutine(obj) Return True if obj is a coroutine object, which may be based on

2025-01-10 15:47:30
asyncio.AbstractEventLoop.create_task()
  • References/Python/Python/Inputouput

AbstractEventLoop.create_task(coro) Schedule the execution of a

2025-01-10 15:47:30
asyncio.Future.done()
  • References/Python/Python/Inputouput

done() Return True if the future is done. Done means either that a result / exception are available

2025-01-10 15:47:30
asyncio.Queue.get_nowait()
  • References/Python/Python/Inputouput

get_nowait() Remove and return an item from the queue. Return an item if one is immediately

2025-01-10 15:47:30
asyncio.Handle.cancel()
  • References/Python/Python/Inputouput

cancel() Cancel the call. If the callback is already canceled or executed, this method has no effect.

2025-01-10 15:47:30
asyncio.AbstractEventLoop.add_writer()
  • References/Python/Python/Inputouput

AbstractEventLoop.add_writer(fd, callback, *args) Start watching the file descriptor for write availability and then call the

2025-01-10 15:47:30
select.devpoll.unregister()
  • References/Python/Python/Inputouput

devpoll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method

2025-01-10 15:47:30
asyncio.AbstractEventLoop.call_later()
  • References/Python/Python/Inputouput

AbstractEventLoop.call_later(delay, callback, *args) Arrange for the callback to be called after the given delay

2025-01-10 15:47:30
asyncio.asyncio.subprocess.Process.kill()
  • References/Python/Python/Inputouput

kill() Kills the child. On Posix OSs the function sends SIGKILL to the child. On Windows kill() is

2025-01-10 15:47:30