com.lightstep.tracer.shared.BinaryPropagator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-common Show documentation
Show all versions of java-common Show documentation
The LightStep OpenTracing Tracer implementation for Java
package com.lightstep.tracer.shared;
import io.opentracing.propagation.Binary;
class BinaryPropagator implements Propagator {
public void inject(SpanContext spanContext, C carrier) {
// TODO: implement
}
public SpanContext extract(C carrier) {
// TODO: implement
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy