├── .dockerignore ├── .gitattributes ├── .github ├── README.md ├── SagawayCarReservationDemo.png └── workflows │ ├── BuildAndPublishAllNugetPackages.yaml │ ├── BuildAndPushImages.yaml │ ├── IntegrationTest.yaml │ ├── PublishSagawayCallbackPropagatorNuGet.yaml │ ├── PublishSagawayCallbackRouter.yaml │ ├── PublishSagawayDaprActorHost.yaml │ ├── PublishSagawayNuGet.yaml │ └── PublishSagawayOpenTelemetryNuGet.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Sagaway.Callback.Propagator ├── CallbackBindingNameProvider.cs ├── HeaderPropagationMiddleware.cs ├── ICallbackBindingNameProvider.cs ├── ISagawayContextManager.cs ├── Sagaway.Callback.Propagator.csproj ├── SagawayContext.cs ├── SagawayContextManager.cs ├── SagawayContextPropagationHandler.cs └── SagawayContextPropagatorExtensions.cs ├── Sagaway.Callback.Router ├── ISagawayActor.cs ├── Sagaway.Callback.Router.csproj ├── SagawayCallbackFilter.cs └── WebApplicationSagawayExtension.cs ├── Sagaway.Hosts.DaprActorHost ├── CallSubSagaOptions.cs ├── DaprActorHost.cs ├── DaprActorHostDebuggerProxy.cs ├── DaprStoreStepRecorder.cs ├── DaprStoreStepRecorderRegistrar.cs ├── Sagaway.Hosts.DaprActorHost.csproj └── SubSagaInvocationContext.cs ├── Sagaway.IntegrationTests ├── Sagaway.IntegrationTests.OrchestrationService │ ├── Actors │ │ ├── Argument.cs │ │ ├── ITestActor.cs │ │ ├── ServiceTestInfo.cs │ │ ├── SignalRMessage.cs │ │ ├── TestActor.cs │ │ ├── TestActorOperations.cs │ │ └── TestResult.cs │ ├── Dockerfile │ ├── IHubContextStore.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Sagaway.IntegrationTests.OrchestrationService.csproj │ ├── ServiceTestInfo.cs │ ├── SignalRService.cs │ ├── TestInfo.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Sagaway.IntegrationTests.StepRecorderTestService │ ├── Dockerfile │ ├── IStepRecorderTestActor.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Sagaway.IntegrationTests.StepRecorderTestService.csproj │ ├── StepRecorderTestActor.cs │ └── TestRecorderActorOperations.cs ├── Sagaway.IntegrationTests.TestProject │ ├── ApprovalFiles │ │ ├── TestResetAndReExecuteSaga.approved.txt │ │ ├── complex_scenarios_multiple_operations.approved.txt │ │ ├── complex_scenarios_multiple_operations.received.txt │ │ ├── delays_operations_reverts.approved.txt │ │ ├── delays_operations_reverts.received.txt │ │ ├── exceed_max_retries_before_success.approved.txt │ │ ├── exceed_max_retries_before_success.received.txt │ │ ├── failure_with_successful_retries.approved.txt │ │ ├── failure_with_successful_retries.received.txt │ │ ├── immediate_fail_no_retries.approved.txt │ │ ├── immediate_fail_no_retries.received.txt │ │ ├── mixed_success_failure_operations.approved.txt │ │ ├── mixed_success_failure_operations.received.txt │ │ ├── operations_zero_retry_delay.approved.txt │ │ ├── operations_zero_retry_delay.received.txt │ │ ├── revert_operations_failing.approved.txt │ │ ├── revert_operations_failing.received.txt │ │ ├── revert_success_first_attempt_after_failure.approved.txt │ │ ├── revert_success_first_attempt_after_failure.received.txt │ │ ├── success_first_attempt_all_ops.approved.txt │ │ ├── success_first_attempt_all_ops.received.txt │ │ ├── test_1_errors_revert.approved.txt │ │ ├── test_2_errors_revert.approved.txt │ │ ├── test_2_errors_revert_after_2.approved.txt │ │ ├── test_2_errors_revert_after_2.received.txt │ │ ├── test_3_errors_then_success.approved.txt │ │ ├── test_a_1_failed_no_callback.approved.txt │ │ ├── test_a_1_failed_no_callback_revert.approved.txt │ │ ├── test_a_1_failed_no_callback_revert_failed.approved.txt │ │ ├── test_a_1_failed_no_callback_revert_failed_no_callback.approved.txt │ │ ├── test_a_1_failed_wait10_2_failed_b_1_success.approved.txt │ │ ├── test_a_1_failed_wait10_2_success_b_1_failed_wait10_2_failed.approved.txt │ │ ├── test_a_1_failed_wait10_2_success_b_1_failed_wait10_2_failed.received.txt │ │ ├── test_a_1_failed_wait5_2_success_b_1_failed_wait5_2_failed.approved.txt │ │ ├── test_a_1_success_b_1_success.approved.txt │ │ ├── test_a_1_success_no_callback.approved.txt │ │ ├── test_a_failed_on_2_no_callback.approved.txt │ │ ├── test_a_failed_on_2_no_callback_revert.approved.txt │ │ ├── test_a_success_on_2_no_callback.approved.txt │ │ ├── test_a_success_on_3_no_callback_b_success_on_4.approved.txt │ │ └── test_ok_on_1.approved.txt │ ├── ApprovalVerifyWithDump.cs │ ├── AprovalNamer.cs │ ├── Argument.cs │ ├── Endpoint.cs │ ├── ISignalRWrapper.cs │ ├── IntegrationTestCollection.cs │ ├── IntegrationTestSupportFixture.cs │ ├── IntegrationTests.cs │ ├── Logging │ │ ├── XUnitLogger.cs │ │ └── XUnitLoggerProvider.cs │ ├── Sagaway.IntegrationTests.TestProject.csproj │ ├── ServiceTestInfo.cs │ ├── SignalRWrapper.cs │ ├── Span.cs │ ├── Startup.cs │ ├── StepRecorderIntegrationTestCollection.cs │ ├── StepRecorderIntegrationTests.cs │ ├── SubSagaIntegrationTestCollection.cs │ ├── SubSagaIntegrationTests.cs │ ├── TestInfo.cs │ ├── TestResult.cs │ └── appsettings.json ├── Sagaway.IntegrationTests.TestService │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Sagaway.IntegrationTests.TestService.csproj │ ├── SaveState.cs │ ├── ServiceTestInfo.cs │ ├── appsettings.Development.json │ └── appsettings.json └── Sagaway.IntegrationTests.TestSubSagaCommunicationService │ ├── AddResult.cs │ ├── Dockerfile │ ├── DoneResult.cs │ ├── IMainSagaActor.cs │ ├── ISubSagaActor.cs │ ├── MainSagaActor.cs │ ├── MainSagaActorOperations.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Sagaway.IntegrationTests.TestSubSagaCommunicationService.csproj │ ├── Sagaway.IntegrationTests.TestSubSagaCommunicationService.http │ ├── SubSagaActor.cs │ ├── SubSagaActorOperations.cs │ ├── TestResult.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── Sagaway.OpenTelemetry ├── OpenTelemetryAdapter.cs ├── Sagaway.OpenTelemetry.csproj └── TelemetryExtensions.cs ├── Sagaway.ReservationDemo ├── Sagaway.ReservationDemo.BillingManagement │ ├── ActionType.cs │ ├── BillingRequest.cs │ ├── BillingState.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Sagaway.ReservationDemo.BillingManagement.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── Sagaway.ReservationDemo.BookingManagement │ ├── ActionType.cs │ ├── BookingStatus.cs │ ├── CarReservationRequest.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ReservationOperationResult.cs │ ├── ReservationState.cs │ ├── SagaReservationDemo.ReserveCar.http │ ├── Sagaway.ReservationDemo.BookingManagement.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── Sagaway.ReservationDemo.InventoryManagement │ ├── ActionType.cs │ ├── CarClassAllocationRequest.cs │ ├── CarClassInfo.cs │ ├── CarInventoryRequest.cs │ ├── CarInventoryResponse.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── ReservationOperationResult.cs │ ├── ReservationState.cs │ ├── SagaReservationDemo.InventoryManagement.http │ ├── Sagaway.ReservationDemo.InventoryManagement.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── Sagaway.ReservationDemo.ReservationManager │ ├── Actors │ │ ├── BillingDto │ │ │ ├── BillingRequest.cs │ │ │ ├── BillingRequestActionType.cs │ │ │ └── BillingState.cs │ │ ├── BookingDto │ │ │ ├── CarReservationRequest.cs │ │ │ ├── CarReservationRequestActionType.cs │ │ │ └── ReservationState.cs │ │ ├── BookingInfo.cs │ │ ├── CarReservation │ │ │ ├── CarReservationActor.cs │ │ │ ├── CarReservationActorOperations.cs │ │ │ └── ICarReservationActor.cs │ │ ├── CarReservationCancellation │ │ │ ├── CarCancelReservationActorOperations.cs │ │ │ ├── CarReservationCancellationActor.cs │ │ │ └── ICarReservationCancellationActor.cs │ │ ├── InventoryDto │ │ │ ├── CarClassAllocationRequest.cs │ │ │ ├── CarClassInfo.cs │ │ │ ├── CarInventoryRequest.cs │ │ │ ├── CarInventoryRequestActionType.cs │ │ │ ├── CarInventoryResponse.cs │ │ │ └── ReservationState.cs │ │ ├── InventoryInfo.cs │ │ ├── Publisher │ │ │ ├── Argument.cs │ │ │ ├── ISagaResultPublisher.cs │ │ │ ├── SagaResult.cs │ │ │ ├── SagaResultPublisher.cs │ │ │ └── SignalRMessage.cs │ │ ├── ReservationInfo.cs │ │ └── ReservationOperationResult.cs │ ├── Dockerfile │ ├── IHubContextStore.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SagaReservationDemo.ReservationManager.http │ ├── Sagaway.ReservationDemo.ReservationManager.csproj │ ├── SignalRService.cs │ ├── appsettings.Development.json │ └── appsettings.json └── Sagaway.ReservationDemo.ReservationUI │ ├── App.razor │ ├── Components │ ├── CarInventoryManager.razor │ └── ReservationStatusDisplay.razor │ ├── Dockerfile │ ├── Layout │ ├── MainLayout.razor │ ├── MainLayout.razor.css │ ├── NavMenu.razor │ └── NavMenu.razor.css │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Sagaway.ReservationDemo.ReservationUI.csproj │ ├── Sagaway.ReservationDemo.ReservationUI.sln │ ├── Services │ ├── DTOs │ │ ├── Argument.cs │ │ ├── CarClassAllocationRequest.cs │ │ ├── CarClassInfo.cs │ │ ├── CarInventoryResponse.cs │ │ ├── ReservationResult.cs │ │ ├── ReservationStatus.cs │ │ ├── ReservationStatusType.cs │ │ └── SagaUpdate.cs │ ├── IReservationApiClient.cs │ ├── IReservationManager.cs │ ├── ISignalRService.cs │ ├── ReservationApiClient.cs │ ├── ReservationManager.cs │ ├── ReservationState.cs │ └── SignalRService.cs │ ├── _Imports.razor │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.js │ └── wwwroot │ ├── css │ └── app.css │ ├── favicon.png │ ├── icon-192.png │ ├── images │ ├── DefaultCar.png │ ├── EconomyCar.png │ ├── LuxuryCar.png │ └── StandardCar.png │ ├── index.html │ └── js │ └── saga-log.js ├── Sagaway.Tests ├── ApprovalFiles │ ├── TestValidationNoOnFailedRevertedCallback.approved.txt │ ├── TestValidationNoOnRevertedCallback.approved.txt │ ├── TestValidationNoOnSuccessCompletionCallback.approved.txt │ ├── TestValidationNoOperation.approved.txt │ ├── TestValidationOperationNoDoOperation.approved.txt │ ├── test_O1_After_O2_and_O3.approved.txt │ ├── test_O1_O2_O3_O5_O4.approved.txt │ ├── test_O5_O4_O3_O2_O1.approved.txt │ ├── test_five_deactivated_each.approved.txt │ ├── test_five_deactivated_each_exponential_wait.approved.txt │ ├── test_five_failfast_on_third.approved.txt │ ├── test_five_fast_success_on_third.approved.txt │ ├── test_five_fast_success_on_third_with_second_done.approved.txt │ ├── test_five_success.approved.txt │ ├── test_five_throw_on_fifth.approved.txt │ ├── test_five_throw_on_fifth_report_failure.approved.txt │ ├── test_single_fail_and_exponential_retry.approved.txt │ ├── test_single_fail_and_retry.approved.txt │ ├── test_single_fail_fast_and_retry.approved.txt │ ├── test_single_fail_no_retry.approved.txt │ ├── test_single_fail_no_retry_report_failure.approved.txt │ ├── test_single_long_wait_validate_exception.approved.txt │ ├── test_single_long_wait_validate_false.approved.txt │ ├── test_single_long_wait_validate_false_with_revert.approved.txt │ ├── test_single_long_wait_validate_false_with_revert_exception.approved.txt │ ├── test_single_long_wait_validate_false_with_revert_fails.approved.txt │ ├── test_single_long_wait_validate_true.approved.txt │ ├── test_single_success.approved.txt │ ├── test_single_throw_exception.approved.txt │ ├── test_single_throw_exception_and_exponential_retry.approved.txt │ ├── test_single_throw_exception_and_retry.approved.txt │ ├── test_single_throw_exception_report_fail.approved.txt │ ├── test_single_throw_exception_twice_and_retry_three_times.approved.txt │ ├── test_two_both_failed_revert_fails_2_times.approved.txt │ ├── test_two_first_deactivate_saga.approved.txt │ ├── test_two_first_failed_fast_after_running_second.approved.txt │ ├── test_two_first_fast_succeeded_second_not_run.approved.txt │ ├── test_two_first_success_second_fail_no_retry.approved.txt │ ├── test_two_first_success_second_fail_no_retry_report_failure.approved.txt │ ├── test_two_long_wait_validate_exception.approved.txt │ ├── test_two_long_wait_validate_false_with_revert_exception.approved.txt │ ├── test_two_ops_throw_exception_on_first.approved.txt │ ├── test_two_ops_throw_exception_on_second.approved.txt │ ├── test_two_second_failed_first_depends_on_first.approved.txt │ ├── test_two_second_failed_first_fast_second.approved.txt │ ├── test_two_success_after_5_retries.approved.txt │ ├── test_two_throw_exception_and_retry.approved.txt │ ├── test_two_throw_exception_twice_and_retry_three_times.approved.txt │ ├── test_validate_no_operation.approved.txt │ ├── test_validate_no_retry.approved.txt │ └── test_validate_no_retry_interval.approved.txt ├── ApprovalVerifyExtension.cs ├── AprovvalNamer.cs ├── ExponentialBackoffTests.cs ├── Operations.cs ├── SagaTestHost.cs ├── Sagaway.Tests.csproj ├── Startup.cs ├── TelemetryEvent.cs ├── TestOperationInput.cs ├── TestTelemetryAdapter.cs ├── Tests.cs └── Usings.cs ├── Sagaway.sln ├── Sagaway.sln.DotSettings ├── Sagaway ├── CorruptedSagaStateException.cs ├── ExponentialBackoff.cs ├── ILockWrapper.cs ├── ISaga.cs ├── ISagaReset.cs ├── ISagaSupport.cs ├── IStepRecorder.cs ├── NonLockAsync.cs ├── NullStepRecorder.cs ├── ReentrantAsyncLock.cs ├── Saga.cs ├── SagaAction.cs ├── SagaCompletionEventArgs.cs ├── SagaCompletionStatus.cs ├── SagaDoAction.cs ├── SagaFastOutcome.cs ├── SagaOperationExecution.cs ├── SagaRevertAction.cs ├── Sagaway.Builder │ ├── SagaBuilder.cs │ ├── SagaDoOperationBuilder.cs │ ├── SagaOperation.cs │ └── UndoActionBuilder.cs ├── Sagaway.csproj ├── Telemetry │ ├── ITelemetryAdapter.cs │ ├── ITelemetryDataPersistence.cs │ ├── NullTelemetryAdapter.cs │ ├── OperationOutcome.cs │ ├── SagaOutcome.cs │ └── SagaTelemetryContext.cs └── TelemetryDataPersistence.cs ├── Sagaway_LLM_Training_Data ├── SagawayKnowledge.jsonl └── Sagaway_test_set.jsonl ├── SignalREmulator ├── Dockerfile └── settings.json ├── assets └── package-icon.png ├── dapr ├── components │ ├── actorsecretstore.yaml │ ├── billing-queue.yaml │ ├── booking-queue.yaml │ ├── dapr-secretstore.json │ ├── inventory-queue.yaml │ ├── reservation-response-queue.yaml │ ├── reservationcallback.yaml │ ├── secretstore.yaml │ ├── statestore.yaml │ ├── test-queue.yaml │ ├── test-response-queue.yaml │ └── testcallback.yaml └── config.yaml ├── docker-compose-github-test.yml ├── docker-compose.dcproj ├── docker-compose.yml └── launchSettings.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/SagawayCarReservationDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/SagawayCarReservationDemo.png -------------------------------------------------------------------------------- /.github/workflows/BuildAndPublishAllNugetPackages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/BuildAndPublishAllNugetPackages.yaml -------------------------------------------------------------------------------- /.github/workflows/BuildAndPushImages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/BuildAndPushImages.yaml -------------------------------------------------------------------------------- /.github/workflows/IntegrationTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/IntegrationTest.yaml -------------------------------------------------------------------------------- /.github/workflows/PublishSagawayCallbackPropagatorNuGet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/PublishSagawayCallbackPropagatorNuGet.yaml -------------------------------------------------------------------------------- /.github/workflows/PublishSagawayCallbackRouter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/PublishSagawayCallbackRouter.yaml -------------------------------------------------------------------------------- /.github/workflows/PublishSagawayDaprActorHost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/PublishSagawayDaprActorHost.yaml -------------------------------------------------------------------------------- /.github/workflows/PublishSagawayNuGet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/PublishSagawayNuGet.yaml -------------------------------------------------------------------------------- /.github/workflows/PublishSagawayOpenTelemetryNuGet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.github/workflows/PublishSagawayOpenTelemetryNuGet.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/LICENSE -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/CallbackBindingNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/CallbackBindingNameProvider.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/HeaderPropagationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/HeaderPropagationMiddleware.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/ICallbackBindingNameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/ICallbackBindingNameProvider.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/ISagawayContextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/ISagawayContextManager.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/Sagaway.Callback.Propagator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/Sagaway.Callback.Propagator.csproj -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/SagawayContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/SagawayContext.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/SagawayContextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/SagawayContextManager.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/SagawayContextPropagationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/SagawayContextPropagationHandler.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Propagator/SagawayContextPropagatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Propagator/SagawayContextPropagatorExtensions.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Router/ISagawayActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Router/ISagawayActor.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Router/Sagaway.Callback.Router.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Router/Sagaway.Callback.Router.csproj -------------------------------------------------------------------------------- /Sagaway.Callback.Router/SagawayCallbackFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Router/SagawayCallbackFilter.cs -------------------------------------------------------------------------------- /Sagaway.Callback.Router/WebApplicationSagawayExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Callback.Router/WebApplicationSagawayExtension.cs -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/CallSubSagaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/CallSubSagaOptions.cs -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/DaprActorHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/DaprActorHost.cs -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/DaprActorHostDebuggerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/DaprActorHostDebuggerProxy.cs -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/DaprStoreStepRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/DaprStoreStepRecorder.cs -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/DaprStoreStepRecorderRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/DaprStoreStepRecorderRegistrar.cs -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/Sagaway.Hosts.DaprActorHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/Sagaway.Hosts.DaprActorHost.csproj -------------------------------------------------------------------------------- /Sagaway.Hosts.DaprActorHost/SubSagaInvocationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Hosts.DaprActorHost/SubSagaInvocationContext.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/Argument.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/ITestActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/ITestActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/ServiceTestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/ServiceTestInfo.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/SignalRMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/SignalRMessage.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/TestActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/TestActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/TestActorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/TestActorOperations.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Actors/TestResult.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Dockerfile -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/IHubContextStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/IHubContextStore.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Program.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Sagaway.IntegrationTests.OrchestrationService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/Sagaway.IntegrationTests.OrchestrationService.csproj -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/ServiceTestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/ServiceTestInfo.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/SignalRService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/SignalRService.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/TestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/TestInfo.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.OrchestrationService/appsettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Dockerfile -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/IStepRecorderTestActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/IStepRecorderTestActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Program.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Sagaway.IntegrationTests.StepRecorderTestService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/Sagaway.IntegrationTests.StepRecorderTestService.csproj -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/StepRecorderTestActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/StepRecorderTestActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/TestRecorderActorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.StepRecorderTestService/TestRecorderActorOperations.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/TestResetAndReExecuteSaga.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/TestResetAndReExecuteSaga.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/complex_scenarios_multiple_operations.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/complex_scenarios_multiple_operations.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/complex_scenarios_multiple_operations.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/delays_operations_reverts.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/delays_operations_reverts.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/delays_operations_reverts.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/exceed_max_retries_before_success.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/exceed_max_retries_before_success.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/exceed_max_retries_before_success.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/failure_with_successful_retries.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/failure_with_successful_retries.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/failure_with_successful_retries.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/immediate_fail_no_retries.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/immediate_fail_no_retries.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/immediate_fail_no_retries.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/mixed_success_failure_operations.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/mixed_success_failure_operations.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/mixed_success_failure_operations.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/operations_zero_retry_delay.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/operations_zero_retry_delay.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/operations_zero_retry_delay.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/revert_operations_failing.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/revert_operations_failing.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/revert_operations_failing.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/revert_success_first_attempt_after_failure.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/revert_success_first_attempt_after_failure.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/revert_success_first_attempt_after_failure.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/success_first_attempt_all_ops.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/success_first_attempt_all_ops.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/success_first_attempt_all_ops.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_1_errors_revert.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_1_errors_revert.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_2_errors_revert.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_2_errors_revert.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_2_errors_revert_after_2.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_2_errors_revert_after_2.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_2_errors_revert_after_2.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_3_errors_then_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_3_errors_then_success.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback_revert.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback_revert.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback_revert_failed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback_revert_failed.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback_revert_failed_no_callback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_no_callback_revert_failed_no_callback.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait10_2_failed_b_1_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait10_2_failed_b_1_success.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait10_2_success_b_1_failed_wait10_2_failed.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait10_2_success_b_1_failed_wait10_2_failed.received.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait10_2_success_b_1_failed_wait10_2_failed.received.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait5_2_success_b_1_failed_wait5_2_failed.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_failed_wait5_2_success_b_1_failed_wait5_2_failed.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_success_b_1_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_success_b_1_success.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_success_no_callback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_1_success_no_callback.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_failed_on_2_no_callback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_failed_on_2_no_callback.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_failed_on_2_no_callback_revert.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_failed_on_2_no_callback_revert.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_success_on_2_no_callback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_success_on_2_no_callback.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_success_on_3_no_callback_b_success_on_4.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_a_success_on_3_no_callback_b_success_on_4.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_ok_on_1.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalFiles/test_ok_on_1.approved.txt -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalVerifyWithDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ApprovalVerifyWithDump.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/AprovalNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/AprovalNamer.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Argument.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Endpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Endpoint.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ISignalRWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ISignalRWrapper.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/IntegrationTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/IntegrationTestCollection.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/IntegrationTestSupportFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/IntegrationTestSupportFixture.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/IntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/IntegrationTests.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Logging/XUnitLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Logging/XUnitLogger.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Logging/XUnitLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Logging/XUnitLoggerProvider.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Sagaway.IntegrationTests.TestProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Sagaway.IntegrationTests.TestProject.csproj -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ServiceTestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/ServiceTestInfo.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/SignalRWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/SignalRWrapper.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Span.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/Startup.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/StepRecorderIntegrationTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/StepRecorderIntegrationTestCollection.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/StepRecorderIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/StepRecorderIntegrationTests.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/SubSagaIntegrationTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/SubSagaIntegrationTestCollection.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/SubSagaIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/SubSagaIntegrationTests.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/TestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/TestInfo.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/TestResult.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestProject/appsettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Dockerfile -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Program.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Sagaway.IntegrationTests.TestService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/Sagaway.IntegrationTests.TestService.csproj -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/SaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/SaveState.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/ServiceTestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/ServiceTestInfo.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestService/appsettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/AddResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/AddResult.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Dockerfile -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/DoneResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/DoneResult.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/IMainSagaActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/IMainSagaActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/ISubSagaActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/ISubSagaActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/MainSagaActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/MainSagaActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/MainSagaActorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/MainSagaActorOperations.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Program.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Sagaway.IntegrationTests.TestSubSagaCommunicationService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Sagaway.IntegrationTests.TestSubSagaCommunicationService.csproj -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Sagaway.IntegrationTests.TestSubSagaCommunicationService.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/Sagaway.IntegrationTests.TestSubSagaCommunicationService.http -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/SubSagaActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/SubSagaActor.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/SubSagaActorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/SubSagaActorOperations.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/TestResult.cs -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.IntegrationTests/Sagaway.IntegrationTests.TestSubSagaCommunicationService/appsettings.json -------------------------------------------------------------------------------- /Sagaway.OpenTelemetry/OpenTelemetryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.OpenTelemetry/OpenTelemetryAdapter.cs -------------------------------------------------------------------------------- /Sagaway.OpenTelemetry/Sagaway.OpenTelemetry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.OpenTelemetry/Sagaway.OpenTelemetry.csproj -------------------------------------------------------------------------------- /Sagaway.OpenTelemetry/TelemetryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.OpenTelemetry/TelemetryExtensions.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/ActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/ActionType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/BillingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/BillingRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/BillingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/BillingState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Dockerfile -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Program.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Sagaway.ReservationDemo.BillingManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/Sagaway.ReservationDemo.BillingManagement.csproj -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BillingManagement/appsettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/ActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/ActionType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/BookingStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/BookingStatus.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/CarReservationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/CarReservationRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Dockerfile -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Program.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/ReservationOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/ReservationOperationResult.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/ReservationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/ReservationState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/SagaReservationDemo.ReserveCar.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/SagaReservationDemo.ReserveCar.http -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Sagaway.ReservationDemo.BookingManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/Sagaway.ReservationDemo.BookingManagement.csproj -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.BookingManagement/appsettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/ActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/ActionType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarClassAllocationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarClassAllocationRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarClassInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarClassInfo.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarInventoryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarInventoryRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarInventoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/CarInventoryResponse.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Dockerfile -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Program.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/ReservationOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/ReservationOperationResult.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/ReservationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/ReservationState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/SagaReservationDemo.InventoryManagement.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/SagaReservationDemo.InventoryManagement.http -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Sagaway.ReservationDemo.InventoryManagement.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/Sagaway.ReservationDemo.InventoryManagement.csproj -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.InventoryManagement/appsettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BillingDto/BillingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BillingDto/BillingRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BillingDto/BillingRequestActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BillingDto/BillingRequestActionType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BillingDto/BillingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BillingDto/BillingState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingDto/CarReservationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingDto/CarReservationRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingDto/CarReservationRequestActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingDto/CarReservationRequestActionType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingDto/ReservationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingDto/ReservationState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/BookingInfo.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservation/CarReservationActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservation/CarReservationActor.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservation/CarReservationActorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservation/CarReservationActorOperations.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservation/ICarReservationActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservation/ICarReservationActor.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservationCancellation/CarCancelReservationActorOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservationCancellation/CarCancelReservationActorOperations.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservationCancellation/CarReservationCancellationActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservationCancellation/CarReservationCancellationActor.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservationCancellation/ICarReservationCancellationActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/CarReservationCancellation/ICarReservationCancellationActor.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarClassAllocationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarClassAllocationRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarClassInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarClassInfo.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarInventoryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarInventoryRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarInventoryRequestActionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarInventoryRequestActionType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarInventoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/CarInventoryResponse.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/ReservationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryDto/ReservationState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/InventoryInfo.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/Argument.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/ISagaResultPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/ISagaResultPublisher.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/SagaResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/SagaResult.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/SagaResultPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/SagaResultPublisher.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/SignalRMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/Publisher/SignalRMessage.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/ReservationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/ReservationInfo.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/ReservationOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Actors/ReservationOperationResult.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Dockerfile -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/IHubContextStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/IHubContextStore.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Program.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/SagaReservationDemo.ReservationManager.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/SagaReservationDemo.ReservationManager.http -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Sagaway.ReservationDemo.ReservationManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/Sagaway.ReservationDemo.ReservationManager.csproj -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/SignalRService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/SignalRService.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/appsettings.Development.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationManager/appsettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/App.razor -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Components/CarInventoryManager.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Components/CarInventoryManager.razor -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Components/ReservationStatusDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Components/ReservationStatusDisplay.razor -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Dockerfile -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/MainLayout.razor -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/NavMenu.razor -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Program.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Sagaway.ReservationDemo.ReservationUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Sagaway.ReservationDemo.ReservationUI.csproj -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Sagaway.ReservationDemo.ReservationUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Sagaway.ReservationDemo.ReservationUI.sln -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/Argument.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/CarClassAllocationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/CarClassAllocationRequest.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/CarClassInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/CarClassInfo.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/CarInventoryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/CarInventoryResponse.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/ReservationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/ReservationResult.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/ReservationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/ReservationStatus.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/ReservationStatusType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/ReservationStatusType.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/SagaUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/DTOs/SagaUpdate.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/IReservationApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/IReservationApiClient.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/IReservationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/IReservationManager.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ISignalRService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ISignalRService.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ReservationApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ReservationApiClient.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ReservationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ReservationManager.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ReservationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/ReservationState.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/SignalRService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/Services/SignalRService.cs -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/_Imports.razor -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/nginx.conf -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/package-lock.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/package.json -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/postcss.config.js -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/tailwind.config.js -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/css/app.css -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/favicon.png -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/icon-192.png -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/DefaultCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/DefaultCar.png -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/EconomyCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/EconomyCar.png -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/LuxuryCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/LuxuryCar.png -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/StandardCar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/images/StandardCar.png -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/index.html -------------------------------------------------------------------------------- /Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/js/saga-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.ReservationDemo/Sagaway.ReservationDemo.ReservationUI/wwwroot/js/saga-log.js -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/TestValidationNoOnFailedRevertedCallback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/TestValidationNoOnFailedRevertedCallback.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/TestValidationNoOnRevertedCallback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/TestValidationNoOnRevertedCallback.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/TestValidationNoOnSuccessCompletionCallback.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/TestValidationNoOnSuccessCompletionCallback.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/TestValidationNoOperation.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/TestValidationNoOperation.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/TestValidationOperationNoDoOperation.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/TestValidationOperationNoDoOperation.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_O1_After_O2_and_O3.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_O1_After_O2_and_O3.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_O1_O2_O3_O5_O4.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_O1_O2_O3_O5_O4.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_O5_O4_O3_O2_O1.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_O5_O4_O3_O2_O1.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_deactivated_each.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_deactivated_each.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_deactivated_each_exponential_wait.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_deactivated_each_exponential_wait.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_failfast_on_third.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_failfast_on_third.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_fast_success_on_third.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_fast_success_on_third.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_fast_success_on_third_with_second_done.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_fast_success_on_third_with_second_done.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_success.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_throw_on_fifth.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_throw_on_fifth.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_five_throw_on_fifth_report_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_five_throw_on_fifth_report_failure.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_fail_and_exponential_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_fail_and_exponential_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_fail_and_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_fail_and_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_fail_fast_and_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_fail_fast_and_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_fail_no_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_fail_no_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_fail_no_retry_report_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_fail_no_retry_report_failure.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_exception.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_exception.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false_with_revert.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false_with_revert.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false_with_revert_exception.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false_with_revert_exception.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false_with_revert_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_false_with_revert_fails.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_true.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_long_wait_validate_true.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_success.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_success.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_throw_exception.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_throw_exception.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_throw_exception_and_exponential_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_throw_exception_and_exponential_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_throw_exception_and_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_throw_exception_and_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_throw_exception_report_fail.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_throw_exception_report_fail.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_single_throw_exception_twice_and_retry_three_times.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_single_throw_exception_twice_and_retry_three_times.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_both_failed_revert_fails_2_times.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_both_failed_revert_fails_2_times.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_first_deactivate_saga.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_first_deactivate_saga.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_first_failed_fast_after_running_second.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_first_failed_fast_after_running_second.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_first_fast_succeeded_second_not_run.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_first_fast_succeeded_second_not_run.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_first_success_second_fail_no_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_first_success_second_fail_no_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_first_success_second_fail_no_retry_report_failure.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_first_success_second_fail_no_retry_report_failure.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_long_wait_validate_exception.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_long_wait_validate_exception.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_long_wait_validate_false_with_revert_exception.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_long_wait_validate_false_with_revert_exception.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_ops_throw_exception_on_first.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_ops_throw_exception_on_first.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_ops_throw_exception_on_second.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_ops_throw_exception_on_second.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_second_failed_first_depends_on_first.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_second_failed_first_depends_on_first.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_second_failed_first_fast_second.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_second_failed_first_fast_second.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_success_after_5_retries.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_success_after_5_retries.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_throw_exception_and_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_throw_exception_and_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_two_throw_exception_twice_and_retry_three_times.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_two_throw_exception_twice_and_retry_three_times.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_validate_no_operation.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_validate_no_operation.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_validate_no_retry.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_validate_no_retry.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalFiles/test_validate_no_retry_interval.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalFiles/test_validate_no_retry_interval.approved.txt -------------------------------------------------------------------------------- /Sagaway.Tests/ApprovalVerifyExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ApprovalVerifyExtension.cs -------------------------------------------------------------------------------- /Sagaway.Tests/AprovvalNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/AprovvalNamer.cs -------------------------------------------------------------------------------- /Sagaway.Tests/ExponentialBackoffTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/ExponentialBackoffTests.cs -------------------------------------------------------------------------------- /Sagaway.Tests/Operations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/Operations.cs -------------------------------------------------------------------------------- /Sagaway.Tests/SagaTestHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/SagaTestHost.cs -------------------------------------------------------------------------------- /Sagaway.Tests/Sagaway.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/Sagaway.Tests.csproj -------------------------------------------------------------------------------- /Sagaway.Tests/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/Startup.cs -------------------------------------------------------------------------------- /Sagaway.Tests/TelemetryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/TelemetryEvent.cs -------------------------------------------------------------------------------- /Sagaway.Tests/TestOperationInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/TestOperationInput.cs -------------------------------------------------------------------------------- /Sagaway.Tests/TestTelemetryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/TestTelemetryAdapter.cs -------------------------------------------------------------------------------- /Sagaway.Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.Tests/Tests.cs -------------------------------------------------------------------------------- /Sagaway.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Sagaway.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.sln -------------------------------------------------------------------------------- /Sagaway.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway.sln.DotSettings -------------------------------------------------------------------------------- /Sagaway/CorruptedSagaStateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/CorruptedSagaStateException.cs -------------------------------------------------------------------------------- /Sagaway/ExponentialBackoff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/ExponentialBackoff.cs -------------------------------------------------------------------------------- /Sagaway/ILockWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/ILockWrapper.cs -------------------------------------------------------------------------------- /Sagaway/ISaga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/ISaga.cs -------------------------------------------------------------------------------- /Sagaway/ISagaReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/ISagaReset.cs -------------------------------------------------------------------------------- /Sagaway/ISagaSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/ISagaSupport.cs -------------------------------------------------------------------------------- /Sagaway/IStepRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/IStepRecorder.cs -------------------------------------------------------------------------------- /Sagaway/NonLockAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/NonLockAsync.cs -------------------------------------------------------------------------------- /Sagaway/NullStepRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/NullStepRecorder.cs -------------------------------------------------------------------------------- /Sagaway/ReentrantAsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/ReentrantAsyncLock.cs -------------------------------------------------------------------------------- /Sagaway/Saga.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Saga.cs -------------------------------------------------------------------------------- /Sagaway/SagaAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaAction.cs -------------------------------------------------------------------------------- /Sagaway/SagaCompletionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaCompletionEventArgs.cs -------------------------------------------------------------------------------- /Sagaway/SagaCompletionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaCompletionStatus.cs -------------------------------------------------------------------------------- /Sagaway/SagaDoAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaDoAction.cs -------------------------------------------------------------------------------- /Sagaway/SagaFastOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaFastOutcome.cs -------------------------------------------------------------------------------- /Sagaway/SagaOperationExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaOperationExecution.cs -------------------------------------------------------------------------------- /Sagaway/SagaRevertAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/SagaRevertAction.cs -------------------------------------------------------------------------------- /Sagaway/Sagaway.Builder/SagaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Sagaway.Builder/SagaBuilder.cs -------------------------------------------------------------------------------- /Sagaway/Sagaway.Builder/SagaDoOperationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Sagaway.Builder/SagaDoOperationBuilder.cs -------------------------------------------------------------------------------- /Sagaway/Sagaway.Builder/SagaOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Sagaway.Builder/SagaOperation.cs -------------------------------------------------------------------------------- /Sagaway/Sagaway.Builder/UndoActionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Sagaway.Builder/UndoActionBuilder.cs -------------------------------------------------------------------------------- /Sagaway/Sagaway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Sagaway.csproj -------------------------------------------------------------------------------- /Sagaway/Telemetry/ITelemetryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Telemetry/ITelemetryAdapter.cs -------------------------------------------------------------------------------- /Sagaway/Telemetry/ITelemetryDataPersistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Telemetry/ITelemetryDataPersistence.cs -------------------------------------------------------------------------------- /Sagaway/Telemetry/NullTelemetryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Telemetry/NullTelemetryAdapter.cs -------------------------------------------------------------------------------- /Sagaway/Telemetry/OperationOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Telemetry/OperationOutcome.cs -------------------------------------------------------------------------------- /Sagaway/Telemetry/SagaOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Telemetry/SagaOutcome.cs -------------------------------------------------------------------------------- /Sagaway/Telemetry/SagaTelemetryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/Telemetry/SagaTelemetryContext.cs -------------------------------------------------------------------------------- /Sagaway/TelemetryDataPersistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway/TelemetryDataPersistence.cs -------------------------------------------------------------------------------- /Sagaway_LLM_Training_Data/SagawayKnowledge.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway_LLM_Training_Data/SagawayKnowledge.jsonl -------------------------------------------------------------------------------- /Sagaway_LLM_Training_Data/Sagaway_test_set.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/Sagaway_LLM_Training_Data/Sagaway_test_set.jsonl -------------------------------------------------------------------------------- /SignalREmulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/SignalREmulator/Dockerfile -------------------------------------------------------------------------------- /SignalREmulator/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/SignalREmulator/settings.json -------------------------------------------------------------------------------- /assets/package-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/assets/package-icon.png -------------------------------------------------------------------------------- /dapr/components/actorsecretstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/actorsecretstore.yaml -------------------------------------------------------------------------------- /dapr/components/billing-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/billing-queue.yaml -------------------------------------------------------------------------------- /dapr/components/booking-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/booking-queue.yaml -------------------------------------------------------------------------------- /dapr/components/dapr-secretstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/dapr-secretstore.json -------------------------------------------------------------------------------- /dapr/components/inventory-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/inventory-queue.yaml -------------------------------------------------------------------------------- /dapr/components/reservation-response-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/reservation-response-queue.yaml -------------------------------------------------------------------------------- /dapr/components/reservationcallback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/reservationcallback.yaml -------------------------------------------------------------------------------- /dapr/components/secretstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/secretstore.yaml -------------------------------------------------------------------------------- /dapr/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/statestore.yaml -------------------------------------------------------------------------------- /dapr/components/test-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/test-queue.yaml -------------------------------------------------------------------------------- /dapr/components/test-response-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/test-response-queue.yaml -------------------------------------------------------------------------------- /dapr/components/testcallback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/components/testcallback.yaml -------------------------------------------------------------------------------- /dapr/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/dapr/config.yaml -------------------------------------------------------------------------------- /docker-compose-github-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/docker-compose-github-test.yml -------------------------------------------------------------------------------- /docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/docker-compose.dcproj -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zio-Net/Sagaway/HEAD/launchSettings.json --------------------------------------------------------------------------------