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

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

/**
 * Represents a parent context reference.
 *
 * @author Vikram Raman ([email protected])
 */
public class Reference {

  private final WavefrontSpanContext spanContext;
  private final String type;

  public Reference(WavefrontSpanContext spanContext, String type) {
    this.spanContext = spanContext;
    this.type = type;
  }

  public WavefrontSpanContext getSpanContext() {
    return spanContext;
  }

  public String getType() {
    return type;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy