Rabbit-R1/switch port/java/sources/io/sentry/CpuCollectionData.java
2024-05-21 17:08:36 -04:00

20 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;
}
}