AbstractEventLoop.add_reader(fd, callback, *args)
Start watching the file descriptor for read availability and then call the callback with specified arguments.
Use functools.partial to pass keywords to the callback.
AbstractEventLoop.add_reader(fd, callback, *args)
Start watching the file descriptor for read availability and then call the callback with specified arguments.
Use functools.partial to pass keywords to the callback.
Please login to continue.