Class CpuStatistics.Times
- java.lang.Object
-
- com.sedmelluq.discord.lavaplayer.natives.statistics.CpuStatistics.Times
-
- Enclosing class:
- CpuStatistics
public static class CpuStatistics.Times extends java.lang.ObjectCPU timings
-
-
Field Summary
Fields Modifier and Type Field Description longprocessKernelTotal amount of CPU time this process has spent in kernel modelongprocessUserTotal amount of CPU time this process has spent in user modelongsystemKernelTotal amount of CPU time spent in kernel modelongsystemTotalTotal amount of CPU time since system startlongsystemUserTotal amount of CPU time spent in user mode
-
Constructor Summary
Constructors Constructor Description Times(long systemTotal, long systemUser, long systemKernel, long processUser, long processKernel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetProcessUsage()floatgetSystemUsage()
-
-
-
Field Detail
-
systemTotal
public final long systemTotal
Total amount of CPU time since system start
-
systemUser
public final long systemUser
Total amount of CPU time spent in user mode
-
systemKernel
public final long systemKernel
Total amount of CPU time spent in kernel mode
-
processUser
public final long processUser
Total amount of CPU time this process has spent in user mode
-
processKernel
public final long processKernel
Total amount of CPU time this process has spent in kernel mode
-
-
Constructor Detail
-
Times
public Times(long systemTotal, long systemUser, long systemKernel, long processUser, long processKernel)- Parameters:
systemTotal- Total amount of CPU time since system startsystemUser- Total amount of CPU time spent in user modesystemKernel- Total amount of CPU time spent in kernel modeprocessUser- Total amount of CPU time this process has spent in user modeprocessKernel- Total amount of CPU time this process has spent in kernel mode
-
-