mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
25 lines
608 B
Java
25 lines
608 B
Java
package io.sentry.clientreport;
|
|
|
|
import io.sentry.TraceContext;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum DiscardReason {
|
|
QUEUE_OVERFLOW("queue_overflow"),
|
|
CACHE_OVERFLOW("cache_overflow"),
|
|
RATELIMIT_BACKOFF("ratelimit_backoff"),
|
|
NETWORK_ERROR("network_error"),
|
|
SAMPLE_RATE(TraceContext.JsonKeys.SAMPLE_RATE),
|
|
BEFORE_SEND("before_send"),
|
|
EVENT_PROCESSOR("event_processor"),
|
|
BACKPRESSURE("backpressure");
|
|
|
|
private final String reason;
|
|
|
|
public String getReason() {
|
|
return this.reason;
|
|
}
|
|
|
|
DiscardReason(String str) {
|
|
this.reason = str;
|
|
}
|
|
}
|