├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── pr_validation.yml ├── .gitignore ├── .nuke ├── build.schema.json └── parameters.json ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── images ├── creative-commons.png ├── petabridge_logo.png └── smartdraw-logo.jpg ├── infrastructure ├── README.md ├── build.all.cmd ├── build.all.sh ├── mssql-init-container │ ├── README.md │ ├── build.cmd │ ├── build.sh │ └── src │ │ ├── Akka.SqlInitContainer.sln │ │ ├── Akka.SqlInitContainer.sln.DotSettings │ │ └── Akka.SqlInitContainer │ │ ├── Actors │ │ └── SqlConnectionChecker.cs │ │ ├── Akka.SqlInitContainer.csproj │ │ ├── Dockerfile │ │ └── Program.cs └── mssql │ ├── README.md │ ├── akkasql.yaml │ ├── build.cmd │ ├── build.sh │ ├── deploy.k8s.cmd │ ├── deploy.k8s.sh │ └── src │ ├── Dockerfile │ ├── ready-check.sh │ ├── setup.sh │ └── setup.sql └── src ├── Directory.Build.props ├── clustering ├── cluster-bootstrap │ └── Aspire │ │ ├── Aspire.sln │ │ ├── README.md │ │ ├── SimpleCluster.AppHost │ │ ├── AppHost.cs │ │ ├── SimpleCluster.AppHost.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ └── SimpleCluster.Node │ │ ├── AkkaOptions.cs │ │ ├── Program.cs │ │ └── SimpleCluster.Node.csproj ├── cluster-client │ ├── ClusterClientSample.FrontEnd │ │ ├── Actors │ │ │ ├── ActorKeys.cs │ │ │ ├── BatchedWorkRequester.cs │ │ │ └── WorkReportCollector.cs │ │ ├── ClusterClientSample.FrontEnd.csproj │ │ └── Program.cs │ ├── ClusterClientSample.Gateway │ │ ├── Actors │ │ │ ├── MetricCounterActor.cs │ │ │ └── WorkerManagerActor.cs │ │ ├── ClusterClientSample.Gateway.csproj │ │ └── Program.cs │ ├── ClusterClientSample.Node │ │ ├── ClusterClientSample.Node.csproj │ │ └── Program.cs │ ├── ClusterClientSample.Shared │ │ ├── ClusterClientSample.Shared.csproj │ │ ├── Messages.cs │ │ └── WorkerActor.cs │ ├── ClusterClientSample.sln │ ├── Directory.Build.props │ ├── Directory.Packages.props │ └── README.md └── sharding-sqlserver │ ├── README.md │ ├── ShardingSqlServer.sln │ ├── SqlSharding.Shared │ ├── Commands │ │ └── ProductCommands.cs │ ├── Events │ │ └── ProductEvents.cs │ ├── FakeDataGenerator.cs │ ├── ISqlShardingProtocolMember.cs │ ├── IWithOrderId.cs │ ├── IWithProductId.cs │ ├── MessageTagger.cs │ ├── ProductOrder.cs │ ├── ProductState.cs │ ├── Queries │ │ ├── FetchAllProducts.cs │ │ ├── FetchProduct.cs │ │ ├── FetchSoldProducts.cs │ │ └── FetchWarningEvents.cs │ ├── Serialization │ │ ├── MessageSerializer.cs │ │ ├── Proto │ │ │ └── SqlSharding.Messages.proto │ │ └── SerializationHostingExtensions.cs │ ├── Sharding │ │ ├── ProductActorProps.cs │ │ └── ProductMessageRouter.cs │ └── SqlSharding.Shared.csproj │ ├── SqlSharding.Sql.Host │ ├── Actors │ │ ├── ProductIndexActor.cs │ │ ├── ProductTotalsActor.cs │ │ ├── SoldProductIndexActor.cs │ │ └── WarningEventIndexActor.cs │ ├── Dockerfile │ ├── Program.cs │ ├── SqlSharding.Sql.Host.csproj │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ └── appsettings.json │ ├── SqlSharding.WebApp │ ├── Actors │ │ ├── FetchAllProductsConsumer.cs │ │ ├── FetchSoldProductsConsumer.cs │ │ └── FetchWarningEventsConsumer.cs │ ├── Dockerfile │ ├── Pages │ │ ├── CreateProduct.cshtml │ │ ├── CreateProduct.cshtml.cs │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Product.cshtml │ │ ├── Product.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Sold.cshtml │ │ ├── Sold.cshtml.cs │ │ ├── WarningEvents.cshtml │ │ ├── WarningEvents.cshtml.cs │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Services │ │ └── IProductsResolver.cs │ ├── SqlSharding.WebApp.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── build.cmd │ ├── build.sh │ ├── start-dependencies.cmd │ └── start-dependencies.sh ├── cqrs └── cqrs-sqlserver │ ├── CqrsSqlServer.Backend │ ├── Actors │ │ ├── ExponentialBackoffTimeout.cs │ │ ├── GenericChildPerEntityParent.cs │ │ ├── ProductProjectorActor.cs │ │ └── ProductTotalsActor.cs │ ├── CqrsSqlServer.Backend.csproj │ ├── Program.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ └── appsettings.json │ ├── CqrsSqlServer.DataModel │ ├── CqrsSqlServer.DataModel.csproj │ ├── CqrsSqlServerContext.cs │ ├── Entities │ │ └── ProductListing.cs │ ├── Migrations │ │ ├── 20240326010601_InitialCreate.Designer.cs │ │ ├── 20240326010601_InitialCreate.cs │ │ └── CqrsSqlServerContextModelSnapshot.cs │ ├── Program.cs │ ├── appsettings.json │ ├── populate-db.cmd │ └── populate-db.sh │ ├── CqrsSqlServer.Frontend │ ├── .gitignore │ ├── Components │ │ ├── App.razor │ │ ├── Layout │ │ │ └── MainLayout.razor │ │ ├── Pages │ │ │ ├── Error.razor │ │ │ └── Home.razor │ │ ├── Routes.razor │ │ └── _Imports.razor │ ├── CqrsSqlServer.Frontend.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── app.css │ │ └── favicon.ico │ ├── CqrsSqlServer.Shared │ ├── Commands │ │ └── ProductCommands.cs │ ├── CqrsSqlServer.Shared.csproj │ ├── Events │ │ └── ProductEvents.cs │ ├── FakeDataGenerator.cs │ ├── ISqlShardingProtocolMember.cs │ ├── IWithOrderId.cs │ ├── IWithProductId.cs │ ├── MessageTagger.cs │ ├── ProductOrder.cs │ ├── ProductState.cs │ ├── Queries │ │ ├── FetchAllProducts.cs │ │ ├── FetchProduct.cs │ │ ├── FetchSoldProducts.cs │ │ └── FetchWarningEvents.cs │ ├── Serialization │ │ ├── MessageSerializer.cs │ │ ├── Proto │ │ │ └── CqrsSqlServer.Messages.proto │ │ └── SerializationHostingExtensions.cs │ └── Sharding │ │ ├── ProductActorProps.cs │ │ └── ProductMessageRouter.cs │ ├── CqrsSqlServer.sln │ ├── README.md │ ├── start-dependencies.cmd │ └── start-dependencies.sh ├── dependency-injection └── AutofacIntegration │ ├── AutofacIntegration.sln │ ├── AutofacIntegration │ ├── AutofacInjected.cs │ ├── AutofacIntegration.csproj │ ├── EchoActor.cs │ ├── Program.cs │ └── TestActor.cs │ └── README.md ├── nuget.config └── reliability └── rabbitmq-backpressure ├── README.md ├── ReliableRabbitMQ.Consumer ├── Actors │ ├── AmqpConsumerSingletonSettings.cs │ ├── ProductActor.cs │ └── RabbitMqConsumerActor.cs ├── Program.cs ├── ReliableRabbitMQ.Consumer.csproj ├── appsettings.Development.json ├── appsettings.Production.json └── appsettings.json ├── ReliableRabbitMQ.Producer ├── Actors │ └── AmqpProducerActor.cs ├── Program.cs ├── ReliableRabbitMQ.Producer.csproj ├── appsettings.Development.json ├── appsettings.Production.json └── appsettings.json ├── ReliableRabbitMQ.Shared ├── Clustering │ ├── AkkaNetworkSettings.cs │ └── ProductShardMessageExtractor.cs ├── Messages │ └── CreateOrder.cs ├── Queues │ ├── QueueSettings.cs │ └── RabbitMQSettings.cs └── ReliableRabbitMQ.Shared.csproj ├── ReliableRabbitMQ.sln ├── images └── rabbitMQ-backpressure.png ├── start-dependencies.cmd └── start-dependencies.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pr_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/.github/workflows/pr_validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuke/build.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/.nuke/build.schema.json -------------------------------------------------------------------------------- /.nuke/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/.nuke/parameters.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- 1 | ## [0.1.0] / 30 March 2022 2 | - Initial rewrite of repository 3 | -------------------------------------------------------------------------------- /images/creative-commons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/images/creative-commons.png -------------------------------------------------------------------------------- /images/petabridge_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/images/petabridge_logo.png -------------------------------------------------------------------------------- /images/smartdraw-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/images/smartdraw-logo.jpg -------------------------------------------------------------------------------- /infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/README.md -------------------------------------------------------------------------------- /infrastructure/build.all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/build.all.cmd -------------------------------------------------------------------------------- /infrastructure/build.all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/build.all.sh -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/README.md -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/build.cmd -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/build.sh -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/src/Akka.SqlInitContainer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/src/Akka.SqlInitContainer.sln -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/src/Akka.SqlInitContainer.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/src/Akka.SqlInitContainer.sln.DotSettings -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Actors/SqlConnectionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Actors/SqlConnectionChecker.cs -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Akka.SqlInitContainer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Akka.SqlInitContainer.csproj -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Dockerfile -------------------------------------------------------------------------------- /infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql-init-container/src/Akka.SqlInitContainer/Program.cs -------------------------------------------------------------------------------- /infrastructure/mssql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/README.md -------------------------------------------------------------------------------- /infrastructure/mssql/akkasql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/akkasql.yaml -------------------------------------------------------------------------------- /infrastructure/mssql/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/build.cmd -------------------------------------------------------------------------------- /infrastructure/mssql/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/build.sh -------------------------------------------------------------------------------- /infrastructure/mssql/deploy.k8s.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/deploy.k8s.cmd -------------------------------------------------------------------------------- /infrastructure/mssql/deploy.k8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/deploy.k8s.sh -------------------------------------------------------------------------------- /infrastructure/mssql/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/src/Dockerfile -------------------------------------------------------------------------------- /infrastructure/mssql/src/ready-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/src/ready-check.sh -------------------------------------------------------------------------------- /infrastructure/mssql/src/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/src/setup.sh -------------------------------------------------------------------------------- /infrastructure/mssql/src/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/infrastructure/mssql/src/setup.sql -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/Aspire.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/Aspire.sln -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/README.md -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/AppHost.cs -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/SimpleCluster.AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/SimpleCluster.AppHost.csproj -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.AppHost/appsettings.json -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.Node/AkkaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.Node/AkkaOptions.cs -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.Node/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.Node/Program.cs -------------------------------------------------------------------------------- /src/clustering/cluster-bootstrap/Aspire/SimpleCluster.Node/SimpleCluster.Node.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-bootstrap/Aspire/SimpleCluster.Node/SimpleCluster.Node.csproj -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.FrontEnd/Actors/ActorKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.FrontEnd/Actors/ActorKeys.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.FrontEnd/Actors/BatchedWorkRequester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.FrontEnd/Actors/BatchedWorkRequester.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.FrontEnd/Actors/WorkReportCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.FrontEnd/Actors/WorkReportCollector.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.FrontEnd/ClusterClientSample.FrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.FrontEnd/ClusterClientSample.FrontEnd.csproj -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.FrontEnd/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.FrontEnd/Program.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Gateway/Actors/MetricCounterActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Gateway/Actors/MetricCounterActor.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Gateway/Actors/WorkerManagerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Gateway/Actors/WorkerManagerActor.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Gateway/ClusterClientSample.Gateway.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Gateway/ClusterClientSample.Gateway.csproj -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Gateway/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Gateway/Program.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Node/ClusterClientSample.Node.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Node/ClusterClientSample.Node.csproj -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Node/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Node/Program.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Shared/ClusterClientSample.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Shared/ClusterClientSample.Shared.csproj -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Shared/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Shared/Messages.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.Shared/WorkerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.Shared/WorkerActor.cs -------------------------------------------------------------------------------- /src/clustering/cluster-client/ClusterClientSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/ClusterClientSample.sln -------------------------------------------------------------------------------- /src/clustering/cluster-client/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/Directory.Build.props -------------------------------------------------------------------------------- /src/clustering/cluster-client/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/Directory.Packages.props -------------------------------------------------------------------------------- /src/clustering/cluster-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/cluster-client/README.md -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/README.md -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/ShardingSqlServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/ShardingSqlServer.sln -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Commands/ProductCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Commands/ProductCommands.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Events/ProductEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Events/ProductEvents.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/FakeDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/FakeDataGenerator.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/ISqlShardingProtocolMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/ISqlShardingProtocolMember.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/IWithOrderId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/IWithOrderId.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/IWithProductId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/IWithProductId.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/MessageTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/MessageTagger.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/ProductOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/ProductOrder.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/ProductState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/ProductState.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchAllProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchAllProducts.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchProduct.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchSoldProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchSoldProducts.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchWarningEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Queries/FetchWarningEvents.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Serialization/MessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Serialization/MessageSerializer.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Serialization/Proto/SqlSharding.Messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Serialization/Proto/SqlSharding.Messages.proto -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Serialization/SerializationHostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Serialization/SerializationHostingExtensions.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Sharding/ProductActorProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Sharding/ProductActorProps.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/Sharding/ProductMessageRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/Sharding/ProductMessageRouter.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Shared/SqlSharding.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Shared/SqlSharding.Shared.csproj -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/ProductIndexActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/ProductIndexActor.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/ProductTotalsActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/ProductTotalsActor.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/SoldProductIndexActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/SoldProductIndexActor.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/WarningEventIndexActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Actors/WarningEventIndexActor.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Dockerfile -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/Program.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/SqlSharding.Sql.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/SqlSharding.Sql.Host.csproj -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/appsettings.Development.json -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/appsettings.Production.json -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.Sql.Host/appsettings.json -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Actors/FetchAllProductsConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Actors/FetchAllProductsConsumer.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Actors/FetchSoldProductsConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Actors/FetchSoldProductsConsumer.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Actors/FetchWarningEventsConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Actors/FetchWarningEventsConsumer.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Dockerfile -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/CreateProduct.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/CreateProduct.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/CreateProduct.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/CreateProduct.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Product.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Product.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Product.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Product.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Sold.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Sold.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Sold.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/Sold.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/WarningEvents.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/WarningEvents.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/WarningEvents.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/WarningEvents.cshtml.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Program.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/Services/IProductsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/Services/IProductsResolver.cs -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/SqlSharding.WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/SqlSharding.WebApp.csproj -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/appsettings.Development.json -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/appsettings.json -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/SqlSharding.WebApp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/build.cmd -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/build.sh -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/start-dependencies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/start-dependencies.cmd -------------------------------------------------------------------------------- /src/clustering/sharding-sqlserver/start-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/clustering/sharding-sqlserver/start-dependencies.sh -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/ExponentialBackoffTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/ExponentialBackoffTimeout.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/GenericChildPerEntityParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/GenericChildPerEntityParent.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/ProductProjectorActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/ProductProjectorActor.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/ProductTotalsActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Actors/ProductTotalsActor.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/CqrsSqlServer.Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/CqrsSqlServer.Backend.csproj -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/Program.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/appsettings.Development.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/appsettings.Production.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Backend/appsettings.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/CqrsSqlServer.DataModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/CqrsSqlServer.DataModel.csproj -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/CqrsSqlServerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/CqrsSqlServerContext.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Entities/ProductListing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Entities/ProductListing.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Migrations/20240326010601_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Migrations/20240326010601_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Migrations/20240326010601_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Migrations/20240326010601_InitialCreate.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Migrations/CqrsSqlServerContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Migrations/CqrsSqlServerContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/Program.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/appsettings.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/populate-db.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/populate-db.cmd -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/populate-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.DataModel/populate-db.sh -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/.gitignore: -------------------------------------------------------------------------------- 1 | !**/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/App.razor -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Layout/MainLayout.razor -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Pages/Error.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Pages/Error.razor -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Pages/Home.razor -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Routes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/Routes.razor -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Components/_Imports.razor -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/CqrsSqlServer.Frontend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/CqrsSqlServer.Frontend.csproj -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Program.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/appsettings.Development.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/appsettings.json -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/wwwroot/app.css -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Frontend/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Commands/ProductCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Commands/ProductCommands.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/CqrsSqlServer.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/CqrsSqlServer.Shared.csproj -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Events/ProductEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Events/ProductEvents.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/FakeDataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/FakeDataGenerator.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/ISqlShardingProtocolMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/ISqlShardingProtocolMember.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/IWithOrderId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/IWithOrderId.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/IWithProductId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/IWithProductId.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/MessageTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/MessageTagger.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/ProductOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/ProductOrder.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/ProductState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/ProductState.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchAllProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchAllProducts.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchProduct.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchSoldProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchSoldProducts.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchWarningEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Queries/FetchWarningEvents.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Serialization/MessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Serialization/MessageSerializer.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Serialization/Proto/CqrsSqlServer.Messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Serialization/Proto/CqrsSqlServer.Messages.proto -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Serialization/SerializationHostingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Serialization/SerializationHostingExtensions.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Sharding/ProductActorProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Sharding/ProductActorProps.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Sharding/ProductMessageRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.Shared/Sharding/ProductMessageRouter.cs -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/CqrsSqlServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/CqrsSqlServer.sln -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/README.md -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/start-dependencies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/start-dependencies.cmd -------------------------------------------------------------------------------- /src/cqrs/cqrs-sqlserver/start-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/cqrs/cqrs-sqlserver/start-dependencies.sh -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/AutofacIntegration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/AutofacIntegration.sln -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/AutofacIntegration/AutofacInjected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/AutofacIntegration/AutofacInjected.cs -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/AutofacIntegration/AutofacIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/AutofacIntegration/AutofacIntegration.csproj -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/AutofacIntegration/EchoActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/AutofacIntegration/EchoActor.cs -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/AutofacIntegration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/AutofacIntegration/Program.cs -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/AutofacIntegration/TestActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/AutofacIntegration/TestActor.cs -------------------------------------------------------------------------------- /src/dependency-injection/AutofacIntegration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/dependency-injection/AutofacIntegration/README.md -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/README.md -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Actors/AmqpConsumerSingletonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Actors/AmqpConsumerSingletonSettings.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Actors/ProductActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Actors/ProductActor.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Actors/RabbitMqConsumerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Actors/RabbitMqConsumerActor.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/Program.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/ReliableRabbitMQ.Consumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/ReliableRabbitMQ.Consumer.csproj -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/appsettings.Development.json -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/appsettings.Production.json -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Consumer/appsettings.json -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/Actors/AmqpProducerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/Actors/AmqpProducerActor.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/Program.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/ReliableRabbitMQ.Producer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/ReliableRabbitMQ.Producer.csproj -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/appsettings.Development.json -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/appsettings.Production.json -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Producer/appsettings.json -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Clustering/AkkaNetworkSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Clustering/AkkaNetworkSettings.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Clustering/ProductShardMessageExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Clustering/ProductShardMessageExtractor.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Messages/CreateOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Messages/CreateOrder.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Queues/QueueSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Queues/QueueSettings.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Queues/RabbitMQSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/Queues/RabbitMQSettings.cs -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/ReliableRabbitMQ.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.Shared/ReliableRabbitMQ.Shared.csproj -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/ReliableRabbitMQ.sln -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/images/rabbitMQ-backpressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/images/rabbitMQ-backpressure.png -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/start-dependencies.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/start-dependencies.cmd -------------------------------------------------------------------------------- /src/reliability/rabbitmq-backpressure/start-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petabridge/akkadotnet-code-samples/HEAD/src/reliability/rabbitmq-backpressure/start-dependencies.sh --------------------------------------------------------------------------------