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