Java Code Examples for brave.internal.propagation.StringPropagationAdapter
The following examples show how to use
brave.internal.propagation.StringPropagationAdapter. These examples are extracted from open source projects.
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 Project: zipkin-aws Source File: AWSPropagation.java License: Apache License 2.0 | 4 votes |
@Deprecated public <K> Propagation<K> create(KeyFactory<K> keyFactory) { return StringPropagationAdapter.create(get(), keyFactory); }
Example 2
Source Project: zipkin-gcp Source File: StackdriverTracePropagation.java License: Apache License 2.0 | 4 votes |
@Deprecated public <K> Propagation<K> create(KeyFactory<K> keyFactory) { return StringPropagationAdapter.create(get(), keyFactory); }
Example 3
Source Project: brave Source File: B3Propagation.java License: Apache License 2.0 | 4 votes |
@Override public <K1> Propagation<K1> create(KeyFactory<K1> keyFactory) { return StringPropagationAdapter.create(this, keyFactory); }
Example 4
Source Project: brave Source File: BaggagePropagation.java License: Apache License 2.0 | 4 votes |
@Deprecated @Override public <K1> BaggagePropagation<K1> create(KeyFactory<K1> keyFactory) { return new BaggagePropagation<>(StringPropagationAdapter.create(get(), keyFactory)); }
Example 5
Source Project: brave Source File: CustomTraceIdPropagation.java License: Apache License 2.0 | 4 votes |
@Override public <K1> Propagation<K1> create(KeyFactory<K1> keyFactory) { return StringPropagationAdapter.create(this, keyFactory); }
Example 6
Source Project: brave Source File: ITKafkaTracing.java License: Apache License 2.0 | 4 votes |
@Override public <K1> Propagation<K1> create(KeyFactory<K1> keyFactory) { return StringPropagationAdapter.create(this, keyFactory); }