Class: ProcessExit

ProcessExit(faulted, code, signal, stdOut, stdErr)

Inherits from ProcessResult and represents the details of an exited Process. This result can either be positive (non-faulted) or negative. The result will provide details about the termination, such as exit-code, signal (if available) or the contents of stderr and stdout (if configured to be used).

Constructor

new ProcessExit(faulted, code, signal, stdOut, stdErr)

Parameters:
Name Type Description
faulted Boolean
code Number
signal String | null
stdOut String | null
stdErr String | null
Author:
Source:

Extends