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

io.opentelemetry.contrib.compressor.zstd.ZstdCompressorProvider Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.contrib.compressor.zstd;

import io.opentelemetry.exporter.internal.compression.Compressor;
import io.opentelemetry.exporter.internal.compression.CompressorProvider;

public final class ZstdCompressorProvider implements CompressorProvider {
  @Override
  public Compressor getInstance() {
    return ZstdCompressor.getInstance();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy