Rabbit-R1/android (non root)/java/sources/io/sentry/cache/IEnvelopeCache.java

16 lines
398 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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());
}
}