コード例 #1
0
 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;
 }
コード例 #3
0
 public RabbitMQQueueReceiver(IQueueClient client, ITracer tracer, ISharedTracing sharedTracing)
 {
     this._client        = client;
     _tracer             = tracer;
     this._sharedTracing = sharedTracing;
 }