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