mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
21 lines
463 B
Java
21 lines
463 B
Java
|
package io.sentry;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class CpuCollectionData {
|
||
|
final double cpuUsagePercentage;
|
||
|
final long timestampMillis;
|
||
|
|
||
|
public double getCpuUsagePercentage() {
|
||
|
return this.cpuUsagePercentage;
|
||
|
}
|
||
|
|
||
|
public long getTimestampMillis() {
|
||
|
return this.timestampMillis;
|
||
|
}
|
||
|
|
||
|
public CpuCollectionData(long j, double d) {
|
||
|
this.timestampMillis = j;
|
||
|
this.cpuUsagePercentage = d;
|
||
|
}
|
||
|
}
|