io.sentry.ExperimentalOptions Maven / Gradle / Ivy
package io.sentry;
import org.jetbrains.annotations.NotNull;
/**
* Experimental options for new features, these options are going to be promoted to SentryOptions
* before GA.
*
* Beware that experimental options can change at any time.
*/
public final class ExperimentalOptions {
private @NotNull SentryReplayOptions sessionReplay;
public ExperimentalOptions(final boolean empty) {
this.sessionReplay = new SentryReplayOptions(empty);
}
@NotNull
public SentryReplayOptions getSessionReplay() {
return sessionReplay;
}
public void setSessionReplay(final @NotNull SentryReplayOptions sessionReplayOptions) {
this.sessionReplay = sessionReplayOptions;
}
}