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

io.sentry.opentelemetry.OtelStorageToken Maven / Gradle / Ivy

package io.sentry.opentelemetry;

import io.opentelemetry.context.Scope;
import io.sentry.ISentryLifecycleToken;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;

@ApiStatus.Internal
final class OtelStorageToken implements ISentryLifecycleToken {

  private final @NotNull Scope otelScope;

  OtelStorageToken(final @NotNull Scope otelScope) {
    this.otelScope = otelScope;
  }

  @Override
  public void close() {
    otelScope.close();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy