
com.wavefront.opentracing.propagation.Injector 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;
/**
* Interface for injecting spanContext's into carriers.
*
* @author Vikram Raman ([email protected])
*/
public interface Injector {
/**
* Inject the given context into the given carrier.
*
* @param spanContext The span context to serialize
* @param carrier The carrier to inject the span context into
*/
void inject(WavefrontSpanContext spanContext, T carrier);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy