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

org.zalando.riptide.opentracing.NoOpInjection Maven / Gradle / Ivy

package org.zalando.riptide.opentracing;

import io.opentracing.SpanContext;
import io.opentracing.Tracer;
import org.zalando.riptide.RequestArguments;

final class NoOpInjection implements Injection {

    @Override
    public RequestArguments inject(
            final Tracer tracer,
            final RequestArguments arguments,
            final SpanContext context) {

        return arguments;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy