
com.lightstep.tracer.shared.Propagator 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
The newest version!
package com.lightstep.tracer.shared;
import io.opentracing.propagation.Binary;
import io.opentracing.propagation.TextMap;
public interface Propagator {
void inject(SpanContext spanContext, C carrier);
SpanContext extract(C carrier);
Propagator TEXT_MAP = new TextMapPropagator();
Propagator HTTP_HEADERS = new HttpHeadersPropagator();
Propagator BINARY = new BinaryPropagator();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy