
com.wavefront.opentracing.propagation.Extractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wavefront-opentracing-sdk-java Show documentation
Show all versions of wavefront-opentracing-sdk-java Show documentation
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