예제 #1
0
 /**
  * Creates a new instance.
  *
  * @param state Server span state, should not be <code>null</code>
  */
 public ServerSpanThreadBinder(IServerSpanState state)
 {
     this.state = Ensure.ArgumentNotNull(state, "state");
 }
예제 #2
0
 public ServerTracer(IServerSpanState state, ISpanCollector spanCollector, Sampler traceSampler)
     : this(new ServerSpanAndEndpoint(state), spanCollector, traceSampler)
 {
 }
예제 #3
0
 public ServerSpanAndEndpoint(IServerSpanState state)
 {
     State = state;
 }