Exemplo n.º 1
0
 public EnvelopeContext(HandlerPipeline pipeline, Envelope envelope, IEnvelopeSender sender, IDelayedJobProcessor delayedJobs)
 {
     Envelope    = envelope;
     DelayedJobs = delayedJobs;
     _pipeline   = pipeline;
     _sender     = sender;
 }
Exemplo n.º 2
0
 public EnvelopeContext(HandlerPipeline pipeline, Envelope envelope, IServiceBus sender)
 {
     Envelope  = envelope;
     _pipeline = pipeline;
     _sender   = sender ?? throw new ArgumentNullException();
 }
Exemplo n.º 3
0
 public EnvelopeContext(HandlerPipeline pipeline, Envelope envelope, IEnvelopeSender sender)
 {
     Envelope  = envelope;
     _pipeline = pipeline;
     _sender   = sender;
 }