| Modifier and Type | Method and Description |
|---|---|
OSProcess[] |
OperatingSystem.getChildProcesses(int parentPid,
int limit,
OperatingSystem.ProcessSort sort)
Gets currently running child processes of provided PID.
|
OSProcess |
OperatingSystem.getProcess(int pid)
Gets information on a currently running process
|
OSProcess |
AbstractOS.getProcess(int pid) |
OSProcess |
OperatingSystem.getProcess(int pid,
boolean slowFields)
Gets information on a currently running process
|
OSProcess[] |
OperatingSystem.getProcesses()
Gets currently running processes.
|
OSProcess[] |
AbstractOS.getProcesses() |
OSProcess[] |
OperatingSystem.getProcesses(int limit,
OperatingSystem.ProcessSort sort)
Gets currently running processes, optionally limited to the top "N" for a
particular sorting order.
|
OSProcess[] |
AbstractOS.getProcesses(int limit,
OperatingSystem.ProcessSort sort) |
OSProcess[] |
OperatingSystem.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields)
Gets currently running processes.
|
| Modifier and Type | Method and Description |
|---|---|
List<OSProcess> |
OperatingSystem.getProcesses(Collection<Integer> pids)
Gets information on a currently running processes.
|
List<OSProcess> |
AbstractOS.getProcesses(Collection<Integer> pids) |
List<OSProcess> |
OperatingSystem.getProcesses(Collection<Integer> pids,
boolean slowFields)
Gets information on a currently running processes.
|
List<OSProcess> |
AbstractOS.getProcesses(Collection<Integer> pids,
boolean slowFields) |
protected List<OSProcess> |
AbstractOS.processSort(List<OSProcess> processes,
int limit,
OperatingSystem.ProcessSort sort)
Sorts an array of processes using the specified sorting, returning an array
with the top limit results if positive.
|
| Modifier and Type | Method and Description |
|---|---|
protected List<OSProcess> |
AbstractOS.processSort(List<OSProcess> processes,
int limit,
OperatingSystem.ProcessSort sort)
Sorts an array of processes using the specified sorting, returning an array
with the top limit results if positive.
|
| Modifier and Type | Method and Description |
|---|---|
OSProcess[] |
LinuxOS.getChildProcesses(int parentPid,
int limit,
OperatingSystem.ProcessSort sort) |
OSProcess |
LinuxOS.getProcess(int pid,
boolean slowFields) |
OSProcess[] |
LinuxOS.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields) |
| Modifier and Type | Method and Description |
|---|---|
OSProcess[] |
MacOS.getChildProcesses(int parentPid,
int limit,
OperatingSystem.ProcessSort sort) |
OSProcess |
MacOS.getProcess(int pid,
boolean slowFields) |
OSProcess[] |
MacOS.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields) |
| Modifier and Type | Method and Description |
|---|---|
OSProcess[] |
FreeBsdOS.getChildProcesses(int parentPid,
int limit,
OperatingSystem.ProcessSort sort) |
OSProcess |
FreeBsdOS.getProcess(int pid,
boolean slowFields) |
OSProcess[] |
FreeBsdOS.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields) |
| Modifier and Type | Method and Description |
|---|---|
OSProcess[] |
SolarisOS.getChildProcesses(int parentPid,
int limit,
OperatingSystem.ProcessSort sort) |
OSProcess |
SolarisOS.getProcess(int pid,
boolean slowFields) |
OSProcess[] |
SolarisOS.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields) |
| Modifier and Type | Method and Description |
|---|---|
OSProcess[] |
WindowsOS.getChildProcesses(int parentPid,
int limit,
OperatingSystem.ProcessSort sort) |
OSProcess |
WindowsOS.getProcess(int pid,
boolean slowFields) |
OSProcess[] |
WindowsOS.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields) |
| Modifier and Type | Method and Description |
|---|---|
List<OSProcess> |
WindowsOS.getProcesses(Collection<Integer> pids) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
WindowsOS.handleWin32ExceptionOnGetProcessInfo(OSProcess proc,
com.sun.jna.platform.win32.Win32Exception ex) |
Copyright © 2019. All rights reserved.