| Modifier and Type | Method and Description |
|---|---|
static OperatingSystem.ProcessSort |
OperatingSystem.ProcessSort.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatingSystem.ProcessSort[] |
OperatingSystem.ProcessSort.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| 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.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.
|
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.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.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.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.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.getProcesses(int limit,
OperatingSystem.ProcessSort sort,
boolean slowFields) |
Copyright © 2019. All rights reserved.