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

io.sentry.NoOpReplayBreadcrumbConverter Maven / Gradle / Ivy

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

import io.sentry.rrweb.RRWebEvent;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public final class NoOpReplayBreadcrumbConverter implements ReplayBreadcrumbConverter {

  private static final NoOpReplayBreadcrumbConverter instance = new NoOpReplayBreadcrumbConverter();

  public static NoOpReplayBreadcrumbConverter getInstance() {
    return instance;
  }

  private NoOpReplayBreadcrumbConverter() {}

  @Override
  public @Nullable RRWebEvent convert(final @NotNull Breadcrumb breadcrumb) {
    return null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy