gitextract_bi2if15r/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── dotnetcore.yml ├── .gitignore ├── EventFlow.Example/ │ ├── Aggregates/ │ │ ├── CommandHandlers/ │ │ │ ├── ExampleCommandHandler.cs │ │ │ └── ResetCommandHandler.cs │ │ ├── Commands/ │ │ │ ├── ExampleCommand.cs │ │ │ └── ResetCommand.cs │ │ ├── Decoraters/ │ │ │ └── LogCommandBus.cs │ │ ├── Events/ │ │ │ ├── ExampleEvent.cs │ │ │ ├── ExampleId.cs │ │ │ └── ResetEvent.cs │ │ ├── ExampleAggregate.cs │ │ ├── ReadModels/ │ │ │ └── ExampleReadModel.cs │ │ ├── Sagas/ │ │ │ ├── Events/ │ │ │ │ ├── ExampleSagaCompletedEvent.cs │ │ │ │ └── ExampleSagaStartedEvent.cs │ │ │ ├── ExampleSaga.cs │ │ │ ├── ExampleSagaId.cs │ │ │ ├── SagaExtension.cs │ │ │ └── SagaLocator.cs │ │ ├── Snapshots/ │ │ │ ├── ExampleSnapshot.cs │ │ │ └── ExampleSnapshotVersion.cs │ │ └── Subscribers/ │ │ └── ExampleSyncSubscriber.cs │ ├── EventFlow.Example.csproj │ ├── Jobs/ │ │ └── ExampleJobs.cs │ ├── Models/ │ │ └── CommandReturnResult.cs │ ├── Program.cs │ └── PublishCommand.cs ├── EventFlow.Tests/ │ ├── EventFlow.Tests.csproj │ ├── IntegrationTestBase.cs │ └── IntegrationTests.cs ├── EventFlowExamples.sln ├── EventStore/ │ ├── EventStore.csproj │ └── EventStoreExtension.cs ├── LICENSE ├── README.md ├── SyncEventHandler/ │ ├── ExampleAggregate.cs │ ├── ExampleEvent.cs │ ├── ExampleSyncSubscriber.cs │ ├── Program.cs │ └── SyncEventHandler.csproj ├── _config.yml └── build/ └── docker-compose.yml