brave.internal.propagation.StringPropagationAdapter Java Examples

The following examples show how to use brave.internal.propagation.StringPropagationAdapter. 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 vote down vote up
@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 vote down vote up
@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 vote down vote up
@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 vote down vote up
@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 vote down vote up
@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 vote down vote up
@Override public <K1> Propagation<K1> create(KeyFactory<K1> keyFactory) {
  return StringPropagationAdapter.create(this, keyFactory);
}