mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
15 lines
398 B
Java
15 lines
398 B
Java
package io.sentry.cache;
|
|
|
|
import io.sentry.Hint;
|
|
import io.sentry.SentryEnvelope;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface IEnvelopeCache extends Iterable<SentryEnvelope> {
|
|
void discard(SentryEnvelope sentryEnvelope);
|
|
|
|
void store(SentryEnvelope sentryEnvelope, Hint hint);
|
|
|
|
default void store(SentryEnvelope sentryEnvelope) {
|
|
store(sentryEnvelope, new Hint());
|
|
}
|
|
}
|