mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-24 08:02:37 -06:00
30 lines
696 B
Java
30 lines
696 B
Java
package io.sentry;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class MemoryCollectionData {
|
|
final long timestampMillis;
|
|
final long usedHeapMemory;
|
|
final long usedNativeMemory;
|
|
|
|
public long getTimestampMillis() {
|
|
return this.timestampMillis;
|
|
}
|
|
|
|
public long getUsedHeapMemory() {
|
|
return this.usedHeapMemory;
|
|
}
|
|
|
|
public long getUsedNativeMemory() {
|
|
return this.usedNativeMemory;
|
|
}
|
|
|
|
public MemoryCollectionData(long j, long j2, long j3) {
|
|
this.timestampMillis = j;
|
|
this.usedHeapMemory = j2;
|
|
this.usedNativeMemory = j3;
|
|
}
|
|
|
|
public MemoryCollectionData(long j, long j2) {
|
|
this(j, j2, -1L);
|
|
}
|
|
}
|