@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias ProcessExitedNotification

    Final process exit notification for process/spawn.

    type ProcessExitedNotification = {
        exitCode: number;
        processHandle: string;
        stderr: string;
        stderrCapReached: boolean;
        stdout: string;
        stdoutCapReached: boolean;
    }
    Index

    Properties

    exitCode: number

    Process exit code.

    processHandle: string

    Client-supplied, connection-scoped processHandle from process/spawn.

    stderr: string

    Buffered stderr capture.

    Empty when stderr was streamed via process/outputDelta.

    stderrCapReached: boolean

    Whether stderr reached outputBytesCap.

    In streaming mode, stderr is empty and cap state is also reported on the final stderr process/outputDelta notification.

    stdout: string

    Buffered stdout capture.

    Empty when stdout was streamed via process/outputDelta.

    stdoutCapReached: boolean

    Whether stdout reached outputBytesCap.

    In streaming mode, stdout is empty and cap state is also reported on the final stdout process/outputDelta notification.