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 String
describe(boolean verbose)
boolean
equals(Object o)
String
getCommandLine()
Returns process command linelong
getParentPid()
Returns parent process PIDlong
getPid()
Returns PID of the process.String
getShortCommandLine()
Returns short process command line or null if command line is not availableint
hashCode()
String
toString()
-
-
-
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
-
-