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

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

There is a newer version: 0.32.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy