io.opentracing.propagation.TextMapInjectAdapter Maven / Gradle / Ivy
/**
* Copyright 2016 The OpenTracing Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package io.opentracing.propagation;
import io.opentracing.SpanContext;
import io.opentracing.Tracer;
import java.util.Iterator;
import java.util.Map;
/**
* A TextMap carrier for use with Tracer.inject() ONLY (it has no read methods).
*
* Note that the TextMap interface can be made to wrap around arbitrary data types (not just Map as
* illustrated here).
*
* @see Tracer#inject(SpanContext, Format, Object)
*/
public final class TextMapInjectAdapter implements TextMap {
private final Map map;
public TextMapInjectAdapter(final Map map) {
this.map = map;
}
@Override
public Iterator> iterator() {
throw new UnsupportedOperationException("TextMapInjectAdapter should only be used with Tracer.inject()");
}
@Override
public void put(String key, String value) {
this.map.put(key, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy