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

io.sentry.IOptionsObserver Maven / Gradle / Ivy

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

import io.sentry.protocol.SdkVersion;
import java.util.Map;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

/**
 * A SentryOptions observer that tracks changes of SentryOptions. All methods are "default", so
 * implementors can subscribe to only those properties, that they are interested in.
 */
public interface IOptionsObserver {

  void setRelease(@Nullable String release);

  void setProguardUuid(@Nullable String proguardUuid);

  void setSdkVersion(@Nullable SdkVersion sdkVersion);

  void setEnvironment(@Nullable String environment);

  void setDist(@Nullable String dist);

  void setTags(@NotNull Map tags);

  void setReplayErrorSampleRate(@Nullable Double replayErrorSampleRate);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy