Exemplo n.º 1
0
        public SagaExecutor(IHandlerTypeInvoker handlerInvoker, IContainerScope container)
        {
            HandlerInvoker = handlerInvoker;

            Container = container;
            ExtractSagaType();
        }
Exemplo n.º 2
0
        public SagaExecutor(IHandlerTypeInvoker handlerInvoker, IContainerScope container)
        {
            HandlerInvoker = handlerInvoker;

            Container = container;
            ExtractSagaType();
        }
Exemplo n.º 3
0
        public BaseSagaTests()
        {
            // LogManager.OutputToTrace();
            _invoker = Substitute.For <IHandlerTypeInvoker>();
            _di      = Substitute.For <IContainerScope>();
            _bus     = Substitute.For <IDispatchMessages>();
            _handler = new Handler(_bus);
            _storage = Substitute.For <IStoreSagaState>();
            _saga    = new MySagaState();

            this.Setup();
        }
Exemplo n.º 4
0
        public BaseSagaTests()
        {
            LogManager.OutputToTrace();
            _invoker = Substitute.For<IHandlerTypeInvoker>();
            _di = Substitute.For<IContainerScope>();
            _bus = Substitute.For<IDispatchMessages>();
            _handler = new Handler(_bus);
            _storage = Substitute.For<IStoreSagaState>();
            _saga = new MySagaState();

            this.Setup();

           
        }
Exemplo n.º 5
0
 public SagaStarterExecutor(IHandlerTypeInvoker handlerInvoker, IContainerScope container) : base(handlerInvoker, container)
 {
 }
Exemplo n.º 6
0
 public SagaStarterExecutor(IHandlerTypeInvoker handlerInvoker, IContainerScope container) : base(handlerInvoker, container)
 {
 }