Package jetbrains.buildServer.processes
Class ProcessNode
- java.lang.Object
-
- jetbrains.buildServer.processes.ProcessNode
-
-
Constructor Summary
Constructors Constructor Description ProcessNode(long pid, long parentPid, String commandLine)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringdescribe(boolean verbose)booleanequals(Object o)StringgetCommandLine()Returns process command linelonggetParentPid()Returns parent process PIDlonggetPid()Returns PID of the process.StringgetShortCommandLine()Returns short process command line or null if command line is not availableinthashCode()StringtoString()
-
-
-
Constructor Detail
-
ProcessNode
public ProcessNode(long pid, long parentPid, String commandLine)
-
-
Method Detail
-
getPid
public long getPid()
Returns PID of the process.- Returns:
- PID
-
getParentPid
public long getParentPid()
Returns parent process PID- Returns:
- PPID
-
getCommandLine
@Nullable public String getCommandLine()
Returns process command line- Returns:
- process command line or null if command line is not available
-
getShortCommandLine
@Nullable public String getShortCommandLine()
Returns short process command line or null if command line is not available
-
-