public SagaPersistenceBehavior(ISagaPersister persister, ISagaIdGenerator sagaIdGenerator, ICancelDeferredMessages timeoutCancellation, SagaMetadataCollection sagaMetadataCollection)
 {
     this.sagaIdGenerator        = sagaIdGenerator;
     sagaPersister               = persister;
     this.timeoutCancellation    = timeoutCancellation;
     this.sagaMetadataCollection = sagaMetadataCollection;
 }
Beispiel #2
0
 public SagaPersistenceBehavior(ISagaPersister persister, ISagaIdGenerator sagaIdGenerator, SagaMetadataCollection sagaMetadataCollection)
 {
     this.sagaIdGenerator        = sagaIdGenerator;
     sagaPersister               = persister;
     this.sagaMetadataCollection = sagaMetadataCollection;
 }