io.opentracing.tag.BooleanTag Java Examples

The following examples show how to use io.opentracing.tag.BooleanTag. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: NormalizingSpan.java    From opentracing-toolbox with MIT License 4 votes vote down vote up
@Override
default Span setTag(final String key, final boolean value) {
    return setTag(new BooleanTag(key), value);
}
 
Example #2
Source File: NormalizingSpanBuilder.java    From opentracing-toolbox with MIT License 4 votes vote down vote up
@Override
default SpanBuilder withTag(final String key, final boolean value) {
    return withTag(new BooleanTag(key), value);
}