Interface ProcessInfo

A single process on a server.

interface ProcessInfo {
    args: ScriptArg[];
    filename: string;
    pid: number;
    temporary: boolean;
    threads: number;
}

Properties

args: ScriptArg[]

Script's arguments

filename: string

Script name.

pid: number

Process ID

temporary: boolean

Whether this process is excluded from saves

threads: number

Number of threads script is running with