class documentation

Base class for communication between the dmypy client and server. This contains logic shared between the client and server, such as reading and writing.

Method __init__ Undocumented
Method close Undocumented
Method read Read bytes from an IPC connection until its empty.
Method write Write bytes to an IPC connection.
Class Variable connection Undocumented
Instance Variable name Undocumented
Instance Variable timeout Undocumented
def __init__(self, name: str, timeout: float|None): (source)

Undocumented

def close(self): (source)

Undocumented

def read(self, size: int = 100000) -> bytes: (source)

Read bytes from an IPC connection until its empty.

def write(self, data: bytes): (source)

Write bytes to an IPC connection.

Undocumented

Undocumented

Undocumented