LIRC libraries
LinuxInfraredRemoteControl
 All Classes Files Functions Variables Typedefs Enumerations Macros Modules Pages
lirc.client.AbstractConnection Class Reference

Abstract interface for all connections. More...

Inheritance diagram for lirc.client.AbstractConnection:
lirc.client.LircdConnection lirc.client.RawConnection lirc.client.CommandConnection

Public Member Functions

def __enter__
 
def __exit__
 
def readline
 Read a buffered line. More...
 
def fileno
 Return the file nr used for IO, suitable for select() etc. More...
 
def has_data
 Return true if next readline(None) won't block . More...
 
def close
 Close/release all resources.
 

Detailed Description

Abstract interface for all connections.

Definition at line 158 of file client.py.

Member Function Documentation

def lirc.client.AbstractConnection.fileno (   self,
  int 
)

Return the file nr used for IO, suitable for select() etc.

Definition at line 184 of file client.py.

def lirc.client.AbstractConnection.has_data (   self,
  bool 
)

Return true if next readline(None) won't block .

Definition at line 189 of file client.py.

def lirc.client.AbstractConnection.readline (   self,
  timeout 
)

Read a buffered line.

Parameters
  • timeout: seconds.
    • If set to 0 immediately return either a line or None.
    • If set to None (default mode) use blocking read.

Returns code string as described in lircd(8) without trailing newline or None.

Raises TimeoutException if timeout > 0 expires.

Definition at line 179 of file client.py.


The documentation for this class was generated from the following file: