com.segment.analytics.StatsSnapshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
The hassle-free way to add analytics to your Android app.
package com.segment.analytics;
public class StatsSnapshot {
public final long timestamp;
public final long flushCount;
public final long flushEventCount;
public final long integrationOperationCount;
public final long integrationOperationDuration;
public final long integrationOperationAverageDuration;
public StatsSnapshot(long timestamp, long flushCount, long flushEventCount,
long integrationOperationCount, long integrationOperationDuration) {
this.timestamp = timestamp;
this.flushCount = flushCount;
this.flushEventCount = flushEventCount;
this.integrationOperationCount = integrationOperationCount;
this.integrationOperationDuration = integrationOperationDuration;
integrationOperationAverageDuration = integrationOperationDuration / integrationOperationCount;
}
@Override public String toString() {
return "StatsSnapshot{"
+ "timestamp="
+ timestamp
+
", flushCount="
+ flushCount
+
", flushEventCount="
+ flushEventCount
+
", integrationOperationCount="
+ integrationOperationCount
+
", integrationOperationDuration="
+ integrationOperationDuration
+ ", integrationOperationAverageDuration="
+ integrationOperationAverageDuration
+
'}';
}
}