All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sentry.cache.IEnvelopeCache Maven / Gradle / Ivy

There is a newer version: 8.0.0-rc.3
Show newest version
package io.sentry.cache;

import io.sentry.Hint;
import io.sentry.SentryEnvelope;
import org.jetbrains.annotations.NotNull;

public interface IEnvelopeCache extends Iterable {

  void store(@NotNull SentryEnvelope envelope, @NotNull Hint hint);

  default void store(@NotNull SentryEnvelope envelope) {
    store(envelope, new Hint());
  }

  void discard(@NotNull SentryEnvelope envelope);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy