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

com.wavefront.opentracing.propagation.Extractor Maven / Gradle / Ivy

Go to download

Implements OpenTracing API for collecting and sending tracing data to Wavefront from Java applications.

The newest version!
package com.wavefront.opentracing.propagation;

import com.wavefront.opentracing.WavefrontSpanContext;

/**
 * The interface for extracting SpanContext's from carriers.
 *
 * @author Vikram Raman ([email protected])
 */
public interface Extractor {

  /**
   * Extracts a span context from the given carrier.
   *
   * @param carrier The carrier to extract the span context from
   * @return The extracted span context
   */
  WavefrontSpanContext extract(T carrier);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy