boxer-sdk
    Preparing search index...

    Interface RunResult

    Result returned by BoxerClient.run after a sandbox execution completes.

    interface RunResult {
        exec_id: string;
        exit_code: number;
        stderr: string;
        stdout: string;
        wall_ms: number;
    }
    Index

    Properties

    exec_id: string

    Unique identifier for this execution, e.g. "boxer-9796062c-...".

    exit_code: number

    Exit code of the sandboxed process (0 = success).

    stderr: string

    Captured standard error of the sandboxed process.

    stdout: string

    Captured standard output of the sandboxed process.

    wall_ms: number

    Wall-clock execution time in milliseconds.