class documentation

Local process worker protocol. This worker runs as a local process and communicates via stdin/out.

Method __init__ Undocumented
Method childDataReceived Handle data received on the specific pipe for the _ampProtocol.
Method connectionLost On connection lost, close the log files that we're managing for stdin and stdout.
Method connectionMade When connection is made, create the AMP protocol instance.
Method errReceived Write error data to log.
Async Method exit Cause the worker process to exit.
Method outReceived Send data received from stdout to log.
Method processEnded When the process closes, call connectionLost for cleanup purposes and forward the information to the _ampProtocol.
Instance Variable endDeferred Undocumented
Instance Variable transport Undocumented
Instance Variable _ampProtocol The AMP protocol instance used to communicate with the worker.
Instance Variable _errLog Undocumented
Instance Variable _logDirectory The directory where logs will reside.
Instance Variable _logFile The main log file for tests output.
Instance Variable _outLog Undocumented

Inherited from ProcessProtocol:

Method childConnectionLost Called when a file descriptor associated with the child process is closed.
Method errConnectionLost This will be called when stderr is closed.
Method inConnectionLost This will be called when stdin is closed.
Method outConnectionLost This will be called when stdout is closed.
Method processExited This will be called when the subprocess exits.

Inherited from BaseProtocol (via ProcessProtocol):

Method makeConnection Make a connection to a transport and a server.
Instance Variable connected Undocumented
def __init__(self, ampProtocol: LocalWorkerAMP, logDirectory: FilePath[Any], logFile: TextIO): (source)

Undocumented

def childDataReceived(self, childFD, data): (source)

Handle data received on the specific pipe for the _ampProtocol.

def connectionLost(self, reason): (source)

On connection lost, close the log files that we're managing for stdin and stdout.

def connectionMade(self): (source)

When connection is made, create the AMP protocol instance.

def errReceived(self, data): (source)

Write error data to log.

async def exit(self): (source)

Cause the worker process to exit.

def outReceived(self, data): (source)

Send data received from stdout to log.

def processEnded(self, reason: Failure): (source)

When the process closes, call connectionLost for cleanup purposes and forward the information to the _ampProtocol.

Undocumented

_ampProtocol = (source)

The AMP protocol instance used to communicate with the worker.

Undocumented

_logDirectory = (source)

The directory where logs will reside.

_logFile = (source)

The main log file for tests output.

Undocumented