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

com.wavefront.opentracing.propagation.Injector 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;

/**
 * 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