Member Junction
    Preparing search index...

    A running process inside a sandbox, wherever that sandbox physically is.

    interface HarnessProcess {
        ExitCode: Promise<number>;
        Stderr: AsyncIterable<string>;
        Stdout: AsyncIterable<string>;
        Kill(): void;
    }
    Index

    Properties

    Methods

    Properties

    ExitCode: Promise<number>

    Resolves with the exit code (or null if terminated by signal) once the process has exited.

    Stderr: AsyncIterable<string>

    stderr as complete lines. Consumers typically buffer this for error reporting.

    Stdout: AsyncIterable<string>

    stdout as complete lines, already framed. Ends when the process closes its stream.

    Methods