LIRC libraries
LinuxInfraredRemoteControl
|
Asynchronous read interface on top of an AbstractConnection. More...
Public Member Functions | |
def | __init__ |
def | close |
Clean up loop and the base connection. More... | |
def | readline |
def | __aiter__ |
Return async iterator. More... | |
def | __anext__ |
def | __aenter__ |
def | __aexit__ |
Asynchronous read interface on top of an AbstractConnection.
Definition at line 53 of file async_client.py.
def lirc.async_client.AsyncConnection.__aenter__ | ( | self | ) |
Implement "async with".
Definition at line 85 of file async_client.py.
def lirc.async_client.AsyncConnection.__aexit__ | ( | self, | |
exc_type, | |||
exc, | |||
traceback | |||
) |
Implement exit from "async with".
Definition at line 89 of file async_client.py.
def lirc.async_client.AsyncConnection.__aiter__ | ( | self | ) |
Return async iterator.
Definition at line 78 of file async_client.py.
def lirc.async_client.AsyncConnection.__anext__ | ( | self | ) |
Implement async iterator.next().
Definition at line 81 of file async_client.py.
def lirc.async_client.AsyncConnection.close | ( | self | ) |
Clean up loop and the base connection.
Definition at line 70 of file async_client.py.
def lirc.async_client.AsyncConnection.readline | ( | self, | |
str | |||
) |
Asynchronous get next line from the connection.
Definition at line 73 of file async_client.py.