public RabbitMQQueueClient(IConnectionFactory connectionFactory, string queueName, ITracer tracer, ISharedTracing sharedTracing)
 {
     this._connectionFactory = connectionFactory;
     this._queueName         = queueName;
     this._tracer            = tracer;
     this._sharedTracing     = sharedTracing;
 }
示例#2
0
 public TraceInterceptor(ITracer tracer, ISharedTracing sharedTracing)
 {
     this._tracer        = tracer;
     this._sharedTracing = sharedTracing;
 }
 public RabbitMQQueueReceiver(IQueueClient client, ITracer tracer, ISharedTracing sharedTracing)
 {
     this._client        = client;
     _tracer             = tracer;
     this._sharedTracing = sharedTracing;
 }