EpollProcess.finished

Abstract method called when the process has finished. Once this method has been called, it is guaraneteed that stdout() will not be called again.

class EpollProcess
protected abstract
void
finished
(,)

Parameters

exited_ok bool

if true, the process exited normally and the exit_code parameter is valid. Otherwise the process exited abnormally, and exit_code will be 0.

exit_code int

the process' exit code, if exited_ok is true. Otherwise 0.

Meta