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

com.lightstep.tracer.shared.Propagator Maven / Gradle / Ivy

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