├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── pr-checks.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUPPORT.md ├── Samples └── Metadata │ ├── MetadataSamples.sln │ ├── PersistedMetadata │ ├── MessageWindow.Designer.cs │ ├── MessageWindow.cs │ ├── Messages.cs │ ├── PersistedMetadata.csproj │ └── Program.cs │ └── SimpleMetadata │ ├── MessageWindow.Designer.cs │ ├── MessageWindow.cs │ ├── Messages.cs │ ├── Program.cs │ └── SimpleMetadata.csproj ├── package.bat ├── publish.bat ├── src ├── .editorconfig ├── .nuget │ └── NuGet.exe ├── Dependency.Versions.props ├── PolicyTool.sln ├── ReactiveDomain.Core │ ├── Audit │ │ └── AuditRecord.cs │ ├── IEventSource.cs │ ├── IMetadata.cs │ ├── IMetadataSource.cs │ ├── Logging │ │ ├── ConsoleLogger.cs │ │ ├── ILogger.cs │ │ ├── LazyLogger.cs │ │ ├── LogManager.cs │ │ └── NullLogger.cs │ ├── Messaging │ │ └── Json.cs │ ├── Metadata.cs │ ├── MetadatumNotFoundException.cs │ ├── ReactiveDomain.Core.csproj │ └── Util │ │ ├── Application.cs │ │ ├── BytesFormatter.cs │ │ ├── CustomConfigLoader.cs │ │ ├── Disposer.cs │ │ ├── Empty.cs │ │ ├── Ensure.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FileStreamExtensions.cs │ │ ├── FileUtils.cs │ │ ├── FluentExtensions.cs │ │ ├── Helper.cs │ │ ├── HostName.cs │ │ ├── IPEndPointComparer.cs │ │ ├── IpEndPointExtensions.cs │ │ ├── MD5Hash.cs │ │ ├── OS.cs │ │ ├── ShellExecutor.cs │ │ ├── StringExtensions.cs │ │ └── Unit.cs ├── ReactiveDomain.Debug.nuspec ├── ReactiveDomain.Foundation.Tests │ ├── Domain │ │ ├── AggregateRootEntityTests.cs │ │ ├── CapturingRoute.cs │ │ ├── CorrelatedAggregate.cs │ │ ├── MetadataTests.cs │ │ ├── MetadatumTests.cs │ │ ├── with_correlated_aggregate.cs │ │ ├── with_correlated_repository.cs │ │ └── with_repository.cs │ ├── EmbeddedStreamStoreConnectionCollection.cs │ ├── Logging │ │ ├── when_commands_are_fired.cs │ │ ├── when_events_are_published.cs │ │ ├── when_logging_disabled_and_commands_are_fired.cs │ │ ├── when_logging_disabled_and_events_are_published.cs │ │ ├── when_logging_disabled_and_mixed_messages_are_published.cs │ │ ├── when_logging_high_volume_message_traffic.cs │ │ ├── when_mixed_messages_are_published.cs │ │ ├── when_toggling_logging.cs │ │ ├── when_toggling_logging_from_disabled.cs │ │ ├── with_message_logging_disabled.cs │ │ └── with_message_logging_enabled.cs │ ├── PrefixedCamelCaseStreamNameBuilderTests.cs │ ├── ReactiveDomain.Foundation.Tests.csproj │ ├── StreamListenerTests │ │ ├── Common │ │ │ ├── CommonHelpers.cs │ │ │ └── TestStreamNameBuilder.cs │ │ ├── when_using_listener_start_with_aggregate_and_guid.cs │ │ ├── when_using_listener_start_with_category_aggregate.cs │ │ ├── when_using_listener_start_with_custom_stream_not_synched.cs │ │ ├── when_using_listener_start_with_custom_stream_synched.cs │ │ ├── when_using_listener_start_with_custom_stream_synched_bus.cs │ │ ├── when_using_listener_start_with_event_type.cs │ │ └── when_using_listener_start_with_future_stream.cs │ ├── can_serialize_correlated_messages.cs │ ├── when_serializing_with_json_message_serializer.cs │ ├── when_using_caching_repository.cs │ ├── when_using_correlated_repository.cs │ ├── when_using_read_model_base.cs │ ├── when_using_read_model_base_with_reader.cs │ └── when_using_snapshot_read_model.cs ├── ReactiveDomain.Foundation │ ├── BootStrap.cs │ ├── ConfiguredConnection.cs │ ├── Domain │ │ ├── AggregateRoot.cs │ │ ├── ChildEntity.cs │ │ ├── EventDrivenStateMachine.cs │ │ ├── EventRecorder.cs │ │ ├── EventRouter.cs │ │ ├── ICorrelatedEventSource.cs │ │ ├── ISnapshotSource.cs │ │ ├── IdempotentEventIdGenerator.cs │ │ ├── NameBasedGuidGenerator.cs │ │ └── ProcessManager.cs │ ├── ICatchupStreamSubscriber.cs │ ├── IConfiguredConnection.cs │ ├── ICorrelatedRepository.cs │ ├── IListener.cs │ ├── IRepository.cs │ ├── IStreamNameBuilder.cs │ ├── IStreamReader.cs │ ├── PrefixedCamelCaseStreamNameBuilder.cs │ ├── ReactiveDomain.Foundation.csproj │ ├── RepositoryExtensions.cs │ ├── StreamStore │ │ ├── AggregateDeletedException.cs │ │ ├── AggregateNotFoundException.cs │ │ ├── AggregateVersionException.cs │ │ ├── CachingRepository.cs │ │ ├── CommonMetadata.cs │ │ ├── ContractResolver.cs │ │ ├── CorrelatedStreamStoreRepository.cs │ │ ├── IAggregateCache.cs │ │ ├── IEventSerializer.cs │ │ ├── JsonMessageSerializer.cs │ │ ├── JsonMessageSerializerSettings.cs │ │ ├── OptimisticCacheRepository.cs │ │ ├── QueuedStreamListener.cs │ │ ├── ReadModelBase.cs │ │ ├── ReadModelProperty.cs │ │ ├── ReadModelState.cs │ │ ├── ReadThroughAggregateCache.cs │ │ ├── SnapshotReadModel.cs │ │ ├── StreamListener.cs │ │ ├── StreamReader.cs │ │ ├── StreamStoreMsgs.cs │ │ └── StreamStoreRepository.cs │ └── TransientSubscriber.cs ├── ReactiveDomain.IdentityStorage.Tests │ ├── ClientStoreTests.cs │ ├── MockPrincipal.cs │ ├── ReactiveDomain.IdentityStorage.Tests.csproj │ ├── ResourceStoreTests.cs │ ├── SubjectAggTests.cs │ ├── SubjectRmTests.cs │ ├── TestMessages.cs │ ├── UserAggregateTests.cs │ ├── UserServiceTests.cs │ ├── UserStoreTests.cs │ └── UsersRMTests.cs ├── ReactiveDomain.IdentityStorage │ ├── Domain │ │ ├── Client.cs │ │ ├── Subject.cs │ │ └── User.cs │ ├── Messages │ │ ├── ClientMsgs.cs │ │ ├── SubjectMsgs.cs │ │ └── UserMsgs.cs │ ├── ReactiveDomain.IdentityStorage.csproj │ ├── ReadModels │ │ ├── PrincipalWrapper.cs │ │ ├── SubjectsRm.cs │ │ ├── UserDTO.cs │ │ └── UsersRm.cs │ ├── Services │ │ ├── ActiveDirectoryUserSearch.cs │ │ ├── ClientStore.cs │ │ ├── ClientSvc.cs │ │ ├── ResourcesStore.cs │ │ ├── UserStore.cs │ │ ├── UserSvc.cs │ │ └── UserValidation.cs │ ├── SubjectExceptions.cs │ └── UserExceptions.cs ├── ReactiveDomain.Messaging.Tests │ ├── LaterServiceTests.cs │ ├── MessageExtensionsTests.cs │ ├── ReactiveDomain.Messaging.Tests.csproj │ ├── RemoteBusFixture.cs │ ├── Subscribers │ │ └── QueuedSubscriber │ │ │ ├── can_handle_multiple_publisher_threads_queued.cs │ │ │ ├── can_handle_ordered_queued_messages.cs │ │ │ └── can_unsubscribe_queued_messages.cs │ ├── TimePositionTests.cs │ ├── can_cancel_commands_via_cancellation_token.cs │ ├── when_connecting_buses.cs │ ├── when_creating_a_message.cs │ ├── when_ensuring_values.cs │ ├── when_publishing_a_message.cs │ ├── when_rebuilding_message_hierarchy.cs │ ├── when_sending_commands.cs │ ├── when_sending_commands_via_single_queued_dispatcher.cs │ ├── when_sending_concurrent_commands.cs │ ├── when_sending_remote_handled_commands.cs │ ├── when_serializing_commands.cs │ └── when_serializing_ids.cs ├── ReactiveDomain.Messaging │ ├── BootStrap.cs │ ├── Bus │ │ ├── AdHocCommandHandler.cs │ │ ├── AdHocHandler.cs │ │ ├── AdHocTypedCommandHandler.cs │ │ ├── BusConnector.cs │ │ ├── CommandException.cs │ │ ├── CommandHandler.cs │ │ ├── CommandManager.cs │ │ ├── CommandTracker.cs │ │ ├── DelaySendEnvelope.cs │ │ ├── Dispatcher.cs │ │ ├── DynamicHandler.cs │ │ ├── ExistingHandlerException.cs │ │ ├── HandleExtensions.cs │ │ ├── IApply.cs │ │ ├── IBus.cs │ │ ├── ICommandBus.cs │ │ ├── ICommandPublisher.cs │ │ ├── ICommandSubscriber.cs │ │ ├── IDispatcher.cs │ │ ├── IHandle.cs │ │ ├── IHandleCommand.cs │ │ ├── IMonitoredQueue.cs │ │ ├── IPublisher.cs │ │ ├── IQueuedHandler.cs │ │ ├── ISubscriber.cs │ │ ├── IdempotentHandler.cs │ │ ├── InMemoryBus.cs │ │ ├── LaterService.cs │ │ ├── MessageHandler.cs │ │ ├── MultiQueuedHandler.cs │ │ ├── MultiQueuedPublisher.cs │ │ ├── NarrowingHandler.cs │ │ ├── NullBus.cs │ │ ├── NullableBus.cs │ │ ├── QueueMonitor.cs │ │ ├── QueueStatsCollector.cs │ │ ├── QueuedHandler.cs │ │ ├── QueuedHandlerDiscarding.cs │ │ ├── QueuedSubscriber.cs │ │ ├── TimePosition.cs │ │ ├── TimeSource.cs │ │ └── WideningHandler.cs │ ├── CallbackEnvelope.cs │ ├── Forwarder.cs │ ├── IEnvelope.cs │ ├── MessageBuilder.cs │ ├── MessageHierarchy.cs │ ├── Messages │ │ ├── Command.cs │ │ ├── CommandResponse.cs │ │ ├── CorrelatedRoot.cs │ │ ├── CorrelationSource.cs │ │ ├── Event.cs │ │ ├── IChainedMessage.cs │ │ ├── ICommand.cs │ │ ├── ICommandResponse.cs │ │ ├── ICorrelatedMessage.cs │ │ ├── IEvent.cs │ │ ├── IMessage.cs │ │ ├── IQueueAffineMessage.cs │ │ ├── Message.cs │ │ └── MessageExtensions.cs │ ├── Monitoring │ │ ├── Stats │ │ │ ├── DiskIo.cs │ │ │ ├── GcStats.cs │ │ │ ├── QueueStats.cs │ │ │ ├── StatMetadata.cs │ │ │ └── StatsContainer.cs │ │ └── Utils │ │ │ ├── PerfCounterHelper.cs │ │ │ └── StatsCsvEncoder.cs │ ├── NLog.xsd │ ├── NoopEnvelope.cs │ ├── PriorityQueue.cs │ ├── PublishEnvelope.cs │ ├── ReactiveDomain.Messaging.csproj │ ├── RequestResponseDispatcher.cs │ ├── SendToThisEnvelope.cs │ └── TimeoutService.cs ├── ReactiveDomain.Persistence │ ├── CatchupSubscriptionSettings.cs │ ├── ClientConnectionEventArgs.cs │ ├── Consts.cs │ ├── EventData.cs │ ├── EventReadResult.cs │ ├── EventStore │ │ ├── EsdbConfig.cs │ │ ├── EventStoreConnectionManager.cs │ │ ├── EventStoreConnectionWrapper.cs │ │ └── EventStoreLauncher.cs │ ├── EventStoreCatchUpSubscription.cs │ ├── EventStoreStreamCatchUpSubscription.cs │ ├── ExpectedVersion.cs │ ├── IStreamStoreConnection.cs │ ├── Position.cs │ ├── ProjectedEvent.cs │ ├── ReactiveDomain.Persistence.csproj │ ├── ReadDirection.cs │ ├── RecordedEvent.cs │ ├── ScopedSerialization │ │ ├── IMessageDeserializer.cs │ │ ├── IMessageSerializer.cs │ │ ├── ISnapshotDeserializer.cs │ │ ├── ISnapshotSerializer.cs │ │ ├── Serialization.cs │ │ ├── SerializationPair.cs │ │ ├── SerializationRegistry.cs │ │ ├── SerializationRegistryMessageExtensions.cs │ │ ├── SerializationRegistrySnapshotExtensions.cs │ │ ├── SerializedMessage.cs │ │ ├── Snapshot.cs │ │ ├── StorableMessage.cs │ │ └── StreamStoreReadResult.cs │ ├── StreamEventsSlice.cs │ ├── StreamName.cs │ ├── StreamNameConversions.cs │ ├── StreamNameConverter.cs │ ├── StreamPosition.cs │ ├── StreamStoreConnectionException.cs │ ├── StreamSubscription.cs │ ├── SubscriptionDropReason.cs │ ├── UnknownTypeException.cs │ ├── UserCredentials.cs │ └── WriteResult.cs ├── ReactiveDomain.Policy.Debug.nuspec ├── ReactiveDomain.Policy.Tests │ ├── GlobalSuppressions.cs │ ├── PolicyMapTest.cs │ ├── PolicyTests.cs │ └── ReactiveDomain.Policy.Tests.csproj ├── ReactiveDomain.Policy.nuspec ├── ReactiveDomain.Policy.targets ├── ReactiveDomain.Policy │ ├── AuthorizationException.cs │ ├── Permission.cs │ ├── Permissions.cs │ ├── Policy.cs │ ├── PolicyDTO.cs │ ├── PolicyDispatcher.cs │ ├── ReactiveDomain.Policy.csproj │ ├── Role.cs │ ├── UserDetails.cs │ └── UserPolicy.cs ├── ReactiveDomain.PolicyStorage.Tests │ ├── ApplicationAggregateTests.cs │ ├── ApplicationServiceTests.cs │ ├── ExternalProviderAggregateTests.cs │ ├── Helpers │ │ └── TestMessages.cs │ ├── ReactiveDomain.PolicyStorage.Tests.csproj │ ├── RoleAggregateTests.cs │ ├── RoleServiceTests.cs │ ├── UserEntitlementRMTests.cs │ └── with_policy_user.cs ├── ReactiveDomain.PolicyStorage │ ├── Domain │ │ ├── PolicyUser.cs │ │ ├── SecuredApplication.cs │ │ └── SecurityPolicy.cs │ ├── Messages │ │ ├── ApplicationMsgs.cs │ │ └── PolicyUserMsgs.cs │ ├── ReactiveDomain.PolicyStorage.csproj │ ├── ReadModels │ │ ├── ApplicationDTO.cs │ │ ├── ApplicationRm.cs │ │ ├── FilteredPoliciesRM.cs │ │ ├── PolicyDTO.cs │ │ ├── PolicyUserDTO.cs │ │ ├── PolicyUserRm.cs │ │ ├── ReadModelHelper.cs │ │ └── RoleDTO.cs │ └── Services │ │ ├── ApplicationSvc.cs │ │ ├── PolicyExceptions.cs │ │ └── PolicySvc.cs ├── ReactiveDomain.PolicyTool │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ ├── ReactiveDomain.PolicyTool.csproj │ └── es_settings.json ├── ReactiveDomain.Testing.Debug.nuspec ├── ReactiveDomain.Testing.nuspec ├── ReactiveDomain.Testing │ ├── AssertEx.cs │ ├── ConnectionUtil.cs │ ├── DispatcherUtil.cs │ ├── Domain │ │ ├── Catch.cs │ │ ├── ExpectEventsScenario.cs │ │ ├── ExpectEventsScenarioPassed.cs │ │ ├── ExpectExceptionScenario.cs │ │ ├── ExpectExceptionScenarioPassed.cs │ │ ├── IExpectEventsScenarioBuilder.cs │ │ ├── IExpectExceptionScenarioBuilder.cs │ │ ├── IScenarioGivenNoneStateBuilder.cs │ │ ├── IScenarioGivenStateBuilder.cs │ │ ├── IScenarioInitialStateBuilder.cs │ │ ├── IScenarioThenNoneStateBuilder.cs │ │ ├── IScenarioThenStateBuilder.cs │ │ ├── IScenarioThrowsStateBuilder.cs │ │ ├── IScenarioWhenStateBuilder.cs │ │ ├── Scenario.cs │ │ ├── ScenarioExpectedEventsButRecordedOtherEvents.cs │ │ ├── ScenarioExpectedEventsButThrewException.cs │ │ ├── ScenarioExpectedExceptionButRecordedEvents.cs │ │ ├── ScenarioExpectedExceptionButThrewNoException.cs │ │ ├── ScenarioExpectedExceptionButThrewOtherException.cs │ │ └── ScenarioExtensions.cs │ ├── EventStore │ │ ├── EmbeddedStreamStoreConnectionCollection.cs │ │ ├── EventStoreRepositoryIntegrationTests.cs │ │ ├── MockStreamStoreConnection.cs │ │ ├── MockStreamStoreConnectionTests.cs │ │ ├── StreamReaderTests.cs │ │ ├── StreamStoreConnectionFixture.cs │ │ ├── StreamStoreReadTests.cs │ │ └── StreamStoreSubscriptionTests.cs │ ├── Foundation │ │ ├── TestAggregate.cs │ │ ├── TestAggregateCreated.cs │ │ ├── TestAggregateMessages.cs │ │ ├── TestWoftamAggregate.cs │ │ └── WoftamEvent.cs │ ├── Messaging │ │ ├── ConcurrentMessageQueue.cs │ │ ├── MessageComparer.cs │ │ ├── TestCommandHandler.cs │ │ ├── TestCommandSubscriber.cs │ │ ├── TestCommands.cs │ │ ├── TestEvents.cs │ │ ├── TestInheritedMessageSubscriber.cs │ │ ├── TestMessageHierarchy.cs │ │ ├── TestMessageSubscriber.cs │ │ ├── TestMessages.cs │ │ └── TestTimeSource.cs │ ├── ReactiveDomain.Testing.csproj │ ├── ReactiveDomain.Testing.csproj.DotSettings │ ├── Specifications │ │ ├── DispatcherSpecification.cs │ │ ├── MockRepositorySpecification.cs │ │ ├── MockRepositoryTests.cs │ │ ├── NullComfiguredConnection.cs │ │ ├── NullConnection.cs │ │ ├── NullListener.cs │ │ ├── NullReader.cs │ │ ├── NullRepository.cs │ │ ├── ReadModelTestSpecification.cs │ │ ├── TestQueue.cs │ │ └── TestQueueTests.cs │ ├── TestPublisher.cs │ └── TestVisibilityHelpers.cs ├── ReactiveDomain.Tools │ ├── EventTransformer │ │ ├── DummyEventTransformer.cs │ │ ├── EventTransformer.csproj │ │ └── TransformerFactory.cs │ └── Shovel │ │ ├── App.config │ │ ├── Bootstrap.cs │ │ ├── EventShovel.cs │ │ ├── EventShovelConfig.cs │ │ ├── IEventTransformer.cs │ │ ├── Program.cs │ │ ├── Shovel.csproj │ │ └── Shovel.sln ├── ReactiveDomain.Transport.Tests │ ├── MockTcpConnection.cs │ ├── ReactiveDomain.Transport.Tests.csproj │ ├── TcpBusClientSideTests.cs │ ├── TcpBusServerSideTests.cs │ └── can_serialize_messages.cs ├── ReactiveDomain.Transport │ ├── BufferManagement │ │ ├── BufferManager.cs │ │ ├── BufferPool.cs │ │ ├── BufferPoolStream.cs │ │ ├── UnableToAllocateBufferException.cs │ │ └── UnableToCreateMemoryException.cs │ ├── Formatting │ │ ├── FormatterBase.cs │ │ ├── IMessageFormatter.cs │ │ └── RawMessageFormatter.cs │ ├── Framing │ │ ├── IMessageFramer.cs │ │ ├── LengthPrefixMessageFramer.cs │ │ ├── LengthPrefixMessageFramerWithBufferPool.cs │ │ ├── PackageFramingException.cs │ │ └── StxEtxMessageFramer.cs │ ├── IMonitoredTcpConnection.cs │ ├── ITcpConnection.cs │ ├── Locks │ │ └── SpinLock2.cs │ ├── ReactiveDomain.Transport.csproj │ ├── Serialization │ │ ├── IMessageSerializer.cs │ │ ├── SimpleJsonSerializer.cs │ │ └── TcpMessageEncoder.cs │ ├── SocketArgsPool.cs │ ├── SystemData │ │ ├── InspectionDecision.cs │ │ ├── InspectionResult.cs │ │ ├── TcpCommand.cs │ │ ├── TcpPackage.cs │ │ └── UserCredentials.cs │ ├── TcpBus.cs │ ├── TcpBusClientSide.cs │ ├── TcpBusServerSide.cs │ ├── TcpClientConnector.cs │ ├── TcpConfiguration.cs │ ├── TcpConnection.cs │ ├── TcpConnectionBase.cs │ ├── TcpConnectionLockless.cs │ ├── TcpConnectionMonitor.cs │ ├── TcpConnectionSsl.cs │ ├── TcpInboundMessageHandler.cs │ ├── TcpOutboundMessageHandler.cs │ ├── TcpServerListener.cs │ ├── TcpStats.cs │ ├── TcpTypedConnection.cs │ └── Util │ │ ├── IPEndPointComparer.cs │ │ └── IpEndPointExtensions.cs ├── ReactiveDomain.nuspec ├── ReactiveDomain.sln ├── ReactiveDomain.sln.DotSettings ├── Versions │ └── latest.txt ├── build.props ├── ci.build.imports └── nuget.config └── tools ├── CheckAssemblyVersion.ps1 ├── CreateDebugNuget.ps1 ├── CreateNuget.ps1 └── wget.exe /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Samples/Metadata/MetadataSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/MetadataSamples.sln -------------------------------------------------------------------------------- /Samples/Metadata/PersistedMetadata/MessageWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/PersistedMetadata/MessageWindow.Designer.cs -------------------------------------------------------------------------------- /Samples/Metadata/PersistedMetadata/MessageWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/PersistedMetadata/MessageWindow.cs -------------------------------------------------------------------------------- /Samples/Metadata/PersistedMetadata/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/PersistedMetadata/Messages.cs -------------------------------------------------------------------------------- /Samples/Metadata/PersistedMetadata/PersistedMetadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/PersistedMetadata/PersistedMetadata.csproj -------------------------------------------------------------------------------- /Samples/Metadata/PersistedMetadata/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/PersistedMetadata/Program.cs -------------------------------------------------------------------------------- /Samples/Metadata/SimpleMetadata/MessageWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/SimpleMetadata/MessageWindow.Designer.cs -------------------------------------------------------------------------------- /Samples/Metadata/SimpleMetadata/MessageWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/SimpleMetadata/MessageWindow.cs -------------------------------------------------------------------------------- /Samples/Metadata/SimpleMetadata/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/SimpleMetadata/Messages.cs -------------------------------------------------------------------------------- /Samples/Metadata/SimpleMetadata/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/SimpleMetadata/Program.cs -------------------------------------------------------------------------------- /Samples/Metadata/SimpleMetadata/SimpleMetadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/Samples/Metadata/SimpleMetadata/SimpleMetadata.csproj -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/package.bat -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/publish.bat -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/Dependency.Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/Dependency.Versions.props -------------------------------------------------------------------------------- /src/PolicyTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/PolicyTool.sln -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Audit/AuditRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Audit/AuditRecord.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/IEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/IEventSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/IMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/IMetadata.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/IMetadataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/IMetadataSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Logging/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Logging/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Logging/LazyLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Logging/LazyLogger.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Logging/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Logging/LogManager.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Logging/NullLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Logging/NullLogger.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Messaging/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Messaging/Json.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Metadata.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/MetadatumNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/MetadatumNotFoundException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/ReactiveDomain.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/ReactiveDomain.Core.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/Application.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/BytesFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/BytesFormatter.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/CustomConfigLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/CustomConfigLoader.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/Disposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/Disposer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/Empty.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/Ensure.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/FileStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/FileStreamExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/FileUtils.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/FluentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/FluentExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/Helper.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/HostName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/HostName.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/IPEndPointComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/IPEndPointComparer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/IpEndPointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/IpEndPointExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/MD5Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/MD5Hash.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/OS.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/ShellExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/ShellExecutor.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/StringExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Core/Util/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Core/Util/Unit.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Debug.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Debug.nuspec -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/AggregateRootEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/AggregateRootEntityTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/CapturingRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/CapturingRoute.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/CorrelatedAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/CorrelatedAggregate.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/MetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/MetadataTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/MetadatumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/MetadatumTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/with_correlated_aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/with_correlated_aggregate.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/with_correlated_repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/with_correlated_repository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Domain/with_repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Domain/with_repository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/EmbeddedStreamStoreConnectionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/EmbeddedStreamStoreConnectionCollection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_commands_are_fired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_commands_are_fired.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_events_are_published.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_events_are_published.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_logging_disabled_and_commands_are_fired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_logging_disabled_and_commands_are_fired.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_logging_disabled_and_events_are_published.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_logging_disabled_and_events_are_published.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_logging_disabled_and_mixed_messages_are_published.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_logging_disabled_and_mixed_messages_are_published.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_logging_high_volume_message_traffic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_logging_high_volume_message_traffic.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_mixed_messages_are_published.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_mixed_messages_are_published.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_toggling_logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_toggling_logging.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/when_toggling_logging_from_disabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/when_toggling_logging_from_disabled.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/with_message_logging_disabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/with_message_logging_disabled.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/Logging/with_message_logging_enabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/Logging/with_message_logging_enabled.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/PrefixedCamelCaseStreamNameBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/PrefixedCamelCaseStreamNameBuilderTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/ReactiveDomain.Foundation.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/ReactiveDomain.Foundation.Tests.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/Common/CommonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/Common/CommonHelpers.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/Common/TestStreamNameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/Common/TestStreamNameBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_aggregate_and_guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_aggregate_and_guid.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_category_aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_category_aggregate.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_custom_stream_not_synched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_custom_stream_not_synched.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_custom_stream_synched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_custom_stream_synched.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_custom_stream_synched_bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_custom_stream_synched_bus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_event_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_event_type.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_future_stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/StreamListenerTests/when_using_listener_start_with_future_stream.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/can_serialize_correlated_messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/can_serialize_correlated_messages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/when_serializing_with_json_message_serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/when_serializing_with_json_message_serializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/when_using_caching_repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/when_using_caching_repository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/when_using_correlated_repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/when_using_correlated_repository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/when_using_read_model_base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/when_using_read_model_base.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/when_using_read_model_base_with_reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/when_using_read_model_base_with_reader.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation.Tests/when_using_snapshot_read_model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation.Tests/when_using_snapshot_read_model.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/BootStrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/BootStrap.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/ConfiguredConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/ConfiguredConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/AggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/AggregateRoot.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/ChildEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/ChildEntity.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/EventDrivenStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/EventDrivenStateMachine.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/EventRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/EventRecorder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/EventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/EventRouter.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/ICorrelatedEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/ICorrelatedEventSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/ISnapshotSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/ISnapshotSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/IdempotentEventIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/IdempotentEventIdGenerator.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/NameBasedGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/NameBasedGuidGenerator.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/Domain/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/Domain/ProcessManager.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/ICatchupStreamSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/ICatchupStreamSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/IConfiguredConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/IConfiguredConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/ICorrelatedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/ICorrelatedRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/IListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/IListener.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/IRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/IStreamNameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/IStreamNameBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/IStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/IStreamReader.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/PrefixedCamelCaseStreamNameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/PrefixedCamelCaseStreamNameBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/ReactiveDomain.Foundation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/ReactiveDomain.Foundation.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/RepositoryExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/AggregateDeletedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/AggregateDeletedException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/AggregateNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/AggregateNotFoundException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/AggregateVersionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/AggregateVersionException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/CachingRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/CachingRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/CommonMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/CommonMetadata.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/ContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/ContractResolver.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/CorrelatedStreamStoreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/CorrelatedStreamStoreRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/IAggregateCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/IAggregateCache.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/IEventSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/IEventSerializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/JsonMessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/JsonMessageSerializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/JsonMessageSerializerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/JsonMessageSerializerSettings.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/OptimisticCacheRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/OptimisticCacheRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/QueuedStreamListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/QueuedStreamListener.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/ReadModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/ReadModelBase.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/ReadModelProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/ReadModelProperty.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/ReadModelState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/ReadModelState.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/ReadThroughAggregateCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/ReadThroughAggregateCache.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/SnapshotReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/SnapshotReadModel.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/StreamListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/StreamListener.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/StreamReader.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/StreamStoreMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/StreamStoreMsgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/StreamStore/StreamStoreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/StreamStore/StreamStoreRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Foundation/TransientSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Foundation/TransientSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/ClientStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/ClientStoreTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/MockPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/MockPrincipal.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/ReactiveDomain.IdentityStorage.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/ReactiveDomain.IdentityStorage.Tests.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/ResourceStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/ResourceStoreTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/SubjectAggTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/SubjectAggTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/SubjectRmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/SubjectRmTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/TestMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/TestMessages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/UserAggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/UserAggregateTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/UserServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/UserServiceTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/UserStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/UserStoreTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage.Tests/UsersRMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage.Tests/UsersRMTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Domain/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Domain/Client.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Domain/Subject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Domain/Subject.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Domain/User.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Messages/ClientMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Messages/ClientMsgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Messages/SubjectMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Messages/SubjectMsgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Messages/UserMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Messages/UserMsgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/ReactiveDomain.IdentityStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/ReactiveDomain.IdentityStorage.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/ReadModels/PrincipalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/ReadModels/PrincipalWrapper.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/ReadModels/SubjectsRm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/ReadModels/SubjectsRm.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/ReadModels/UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/ReadModels/UserDTO.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/ReadModels/UsersRm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/ReadModels/UsersRm.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/ActiveDirectoryUserSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/ActiveDirectoryUserSearch.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/ClientStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/ClientStore.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/ClientSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/ClientSvc.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/ResourcesStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/ResourcesStore.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/UserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/UserStore.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/UserSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/UserSvc.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/Services/UserValidation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/Services/UserValidation.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/SubjectExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/SubjectExceptions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.IdentityStorage/UserExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.IdentityStorage/UserExceptions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/LaterServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/LaterServiceTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/MessageExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/MessageExtensionsTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/ReactiveDomain.Messaging.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/ReactiveDomain.Messaging.Tests.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/RemoteBusFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/RemoteBusFixture.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/Subscribers/QueuedSubscriber/can_handle_multiple_publisher_threads_queued.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/Subscribers/QueuedSubscriber/can_handle_multiple_publisher_threads_queued.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/Subscribers/QueuedSubscriber/can_handle_ordered_queued_messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/Subscribers/QueuedSubscriber/can_handle_ordered_queued_messages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/Subscribers/QueuedSubscriber/can_unsubscribe_queued_messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/Subscribers/QueuedSubscriber/can_unsubscribe_queued_messages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/TimePositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/TimePositionTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/can_cancel_commands_via_cancellation_token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/can_cancel_commands_via_cancellation_token.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_connecting_buses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_connecting_buses.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_creating_a_message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_creating_a_message.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_ensuring_values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_ensuring_values.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_publishing_a_message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_publishing_a_message.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_rebuilding_message_hierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_rebuilding_message_hierarchy.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_sending_commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_sending_commands.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_sending_commands_via_single_queued_dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_sending_commands_via_single_queued_dispatcher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_sending_concurrent_commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_sending_concurrent_commands.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_sending_remote_handled_commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_sending_remote_handled_commands.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_serializing_commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_serializing_commands.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging.Tests/when_serializing_ids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging.Tests/when_serializing_ids.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/BootStrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/BootStrap.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/AdHocCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/AdHocCommandHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/AdHocHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/AdHocHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/AdHocTypedCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/AdHocTypedCommandHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/BusConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/BusConnector.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/CommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/CommandException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/CommandHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/CommandManager.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/CommandTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/CommandTracker.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/DelaySendEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/DelaySendEnvelope.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/Dispatcher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/DynamicHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/DynamicHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/ExistingHandlerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/ExistingHandlerException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/HandleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/HandleExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IApply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IApply.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IBus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/ICommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/ICommandBus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/ICommandPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/ICommandPublisher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/ICommandSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/ICommandSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IDispatcher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IHandle.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IHandleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IHandleCommand.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IMonitoredQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IMonitoredQueue.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IPublisher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IQueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IQueuedHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/ISubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/ISubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/IdempotentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/IdempotentHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/InMemoryBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/InMemoryBus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/LaterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/LaterService.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/MessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/MessageHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/MultiQueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/MultiQueuedHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/MultiQueuedPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/MultiQueuedPublisher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/NarrowingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/NarrowingHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/NullBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/NullBus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/NullableBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/NullableBus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/QueueMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/QueueMonitor.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/QueueStatsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/QueueStatsCollector.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/QueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/QueuedHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/QueuedHandlerDiscarding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/QueuedHandlerDiscarding.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/QueuedSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/QueuedSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/TimePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/TimePosition.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/TimeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/TimeSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Bus/WideningHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Bus/WideningHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/CallbackEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/CallbackEnvelope.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Forwarder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Forwarder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/IEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/IEnvelope.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/MessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/MessageBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/MessageHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/MessageHierarchy.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/Command.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/CommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/CommandResponse.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/CorrelatedRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/CorrelatedRoot.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/CorrelationSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/CorrelationSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/Event.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/IChainedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/IChainedMessage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/ICommand.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/ICommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/ICommandResponse.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/ICorrelatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/ICorrelatedMessage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/IEvent.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/IMessage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/IQueueAffineMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/IQueueAffineMessage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/Message.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Messages/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Messages/MessageExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Stats/DiskIo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Stats/DiskIo.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Stats/GcStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Stats/GcStats.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Stats/QueueStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Stats/QueueStats.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Stats/StatMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Stats/StatMetadata.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Stats/StatsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Stats/StatsContainer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Utils/PerfCounterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Utils/PerfCounterHelper.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/Monitoring/Utils/StatsCsvEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/Monitoring/Utils/StatsCsvEncoder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/NLog.xsd -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/NoopEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/NoopEnvelope.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/PriorityQueue.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/PublishEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/PublishEnvelope.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/ReactiveDomain.Messaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/ReactiveDomain.Messaging.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/RequestResponseDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/RequestResponseDispatcher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/SendToThisEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/SendToThisEnvelope.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Messaging/TimeoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Messaging/TimeoutService.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/CatchupSubscriptionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/CatchupSubscriptionSettings.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ClientConnectionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ClientConnectionEventArgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/Consts.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventData.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventReadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventReadResult.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventStore/EsdbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventStore/EsdbConfig.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventStore/EventStoreConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventStore/EventStoreConnectionManager.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventStore/EventStoreConnectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventStore/EventStoreConnectionWrapper.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventStore/EventStoreLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventStore/EventStoreLauncher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventStoreCatchUpSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventStoreCatchUpSubscription.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/EventStoreStreamCatchUpSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/EventStoreStreamCatchUpSubscription.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ExpectedVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ExpectedVersion.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/IStreamStoreConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/IStreamStoreConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/Position.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ProjectedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ProjectedEvent.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ReactiveDomain.Persistence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ReactiveDomain.Persistence.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ReadDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ReadDirection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/RecordedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/RecordedEvent.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/IMessageDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/IMessageDeserializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/IMessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/IMessageSerializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/ISnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/ISnapshotDeserializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/ISnapshotSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/ISnapshotSerializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/Serialization.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/SerializationPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/SerializationPair.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/SerializationRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/SerializationRegistry.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/SerializationRegistryMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/SerializationRegistryMessageExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/SerializationRegistrySnapshotExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/SerializationRegistrySnapshotExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/SerializedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/SerializedMessage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/Snapshot.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/StorableMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/StorableMessage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/ScopedSerialization/StreamStoreReadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/ScopedSerialization/StreamStoreReadResult.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamEventsSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamEventsSlice.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamName.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamNameConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamNameConversions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamNameConverter.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamPosition.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamStoreConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamStoreConnectionException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/StreamSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/StreamSubscription.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/SubscriptionDropReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/SubscriptionDropReason.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/UnknownTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/UnknownTypeException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/UserCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/UserCredentials.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Persistence/WriteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Persistence/WriteResult.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.Debug.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.Debug.nuspec -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.Tests/PolicyMapTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.Tests/PolicyMapTest.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.Tests/PolicyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.Tests/PolicyTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.Tests/ReactiveDomain.Policy.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.Tests/ReactiveDomain.Policy.Tests.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.nuspec -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy.targets -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/AuthorizationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/AuthorizationException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/Permission.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/Permissions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/Policy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/Policy.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/PolicyDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/PolicyDTO.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/PolicyDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/PolicyDispatcher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/ReactiveDomain.Policy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/ReactiveDomain.Policy.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/Role.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/UserDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/UserDetails.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Policy/UserPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Policy/UserPolicy.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/ApplicationAggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/ApplicationAggregateTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/ApplicationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/ApplicationServiceTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/ExternalProviderAggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/ExternalProviderAggregateTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/Helpers/TestMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/Helpers/TestMessages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/ReactiveDomain.PolicyStorage.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/ReactiveDomain.PolicyStorage.Tests.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/RoleAggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/RoleAggregateTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/RoleServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/RoleServiceTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/UserEntitlementRMTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/UserEntitlementRMTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage.Tests/with_policy_user.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage.Tests/with_policy_user.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Domain/PolicyUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Domain/PolicyUser.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Domain/SecuredApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Domain/SecuredApplication.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Domain/SecurityPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Domain/SecurityPolicy.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Messages/ApplicationMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Messages/ApplicationMsgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Messages/PolicyUserMsgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Messages/PolicyUserMsgs.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReactiveDomain.PolicyStorage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReactiveDomain.PolicyStorage.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/ApplicationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/ApplicationDTO.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/ApplicationRm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/ApplicationRm.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/FilteredPoliciesRM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/FilteredPoliciesRM.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/PolicyDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/PolicyDTO.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/PolicyUserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/PolicyUserDTO.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/PolicyUserRm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/PolicyUserRm.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/ReadModelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/ReadModelHelper.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/ReadModels/RoleDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/ReadModels/RoleDTO.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Services/ApplicationSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Services/ApplicationSvc.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Services/PolicyExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Services/PolicyExceptions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyStorage/Services/PolicySvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyStorage/Services/PolicySvc.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyTool/Program.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyTool/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyTool/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyTool/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyTool/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyTool/ReactiveDomain.PolicyTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyTool/ReactiveDomain.PolicyTool.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.PolicyTool/es_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.PolicyTool/es_settings.json -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing.Debug.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing.Debug.nuspec -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing.nuspec -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/AssertEx.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/ConnectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/ConnectionUtil.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/DispatcherUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/DispatcherUtil.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/Catch.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ExpectEventsScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ExpectEventsScenario.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ExpectEventsScenarioPassed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ExpectEventsScenarioPassed.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ExpectExceptionScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ExpectExceptionScenario.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ExpectExceptionScenarioPassed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ExpectExceptionScenarioPassed.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IExpectEventsScenarioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IExpectEventsScenarioBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IExpectExceptionScenarioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IExpectExceptionScenarioBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioGivenStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioInitialStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioInitialStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioThenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioThenNoneStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioThenStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioThrowsStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioThrowsStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/IScenarioWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/IScenarioWhenStateBuilder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/Scenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/Scenario.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ScenarioExpectedEventsButRecordedOtherEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ScenarioExpectedEventsButRecordedOtherEvents.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ScenarioExpectedEventsButThrewException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ScenarioExpectedEventsButThrewException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ScenarioExpectedExceptionButRecordedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ScenarioExpectedExceptionButRecordedEvents.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ScenarioExpectedExceptionButThrewNoException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ScenarioExpectedExceptionButThrewNoException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ScenarioExpectedExceptionButThrewOtherException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ScenarioExpectedExceptionButThrewOtherException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Domain/ScenarioExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Domain/ScenarioExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/EmbeddedStreamStoreConnectionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/EmbeddedStreamStoreConnectionCollection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/EventStoreRepositoryIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/EventStoreRepositoryIntegrationTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/MockStreamStoreConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/MockStreamStoreConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/MockStreamStoreConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/MockStreamStoreConnectionTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/StreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/StreamReaderTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/StreamStoreConnectionFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/StreamStoreConnectionFixture.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/StreamStoreReadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/StreamStoreReadTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/EventStore/StreamStoreSubscriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/EventStore/StreamStoreSubscriptionTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Foundation/TestAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Foundation/TestAggregate.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Foundation/TestAggregateCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Foundation/TestAggregateCreated.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Foundation/TestAggregateMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Foundation/TestAggregateMessages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Foundation/TestWoftamAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Foundation/TestWoftamAggregate.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Foundation/WoftamEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Foundation/WoftamEvent.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/ConcurrentMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/ConcurrentMessageQueue.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/MessageComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/MessageComparer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestCommandHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestCommandSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestCommandSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestCommands.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestEvents.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestInheritedMessageSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestInheritedMessageSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestMessageHierarchy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestMessageHierarchy.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestMessageSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestMessageSubscriber.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestMessages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Messaging/TestTimeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Messaging/TestTimeSource.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/ReactiveDomain.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/ReactiveDomain.Testing.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/ReactiveDomain.Testing.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/ReactiveDomain.Testing.csproj.DotSettings -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/DispatcherSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/DispatcherSpecification.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/MockRepositorySpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/MockRepositorySpecification.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/MockRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/MockRepositoryTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/NullComfiguredConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/NullComfiguredConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/NullConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/NullConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/NullListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/NullListener.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/NullReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/NullReader.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/NullRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/NullRepository.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/ReadModelTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/ReadModelTestSpecification.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/TestQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/TestQueue.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/Specifications/TestQueueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/Specifications/TestQueueTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/TestPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/TestPublisher.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Testing/TestVisibilityHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Testing/TestVisibilityHelpers.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/EventTransformer/DummyEventTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/EventTransformer/DummyEventTransformer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/EventTransformer/EventTransformer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/EventTransformer/EventTransformer.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/EventTransformer/TransformerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/EventTransformer/TransformerFactory.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/App.config -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/Bootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/Bootstrap.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/EventShovel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/EventShovel.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/EventShovelConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/EventShovelConfig.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/IEventTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/IEventTransformer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/Program.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/Shovel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/Shovel.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Tools/Shovel/Shovel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Tools/Shovel/Shovel.sln -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport.Tests/MockTcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport.Tests/MockTcpConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport.Tests/ReactiveDomain.Transport.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport.Tests/ReactiveDomain.Transport.Tests.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport.Tests/TcpBusClientSideTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport.Tests/TcpBusClientSideTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport.Tests/TcpBusServerSideTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport.Tests/TcpBusServerSideTests.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport.Tests/can_serialize_messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport.Tests/can_serialize_messages.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/BufferManagement/BufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/BufferManagement/BufferManager.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/BufferManagement/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/BufferManagement/BufferPool.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/BufferManagement/BufferPoolStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/BufferManagement/BufferPoolStream.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/BufferManagement/UnableToAllocateBufferException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/BufferManagement/UnableToAllocateBufferException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/BufferManagement/UnableToCreateMemoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/BufferManagement/UnableToCreateMemoryException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Formatting/FormatterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Formatting/FormatterBase.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Formatting/IMessageFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Formatting/IMessageFormatter.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Formatting/RawMessageFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Formatting/RawMessageFormatter.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Framing/IMessageFramer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Framing/IMessageFramer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Framing/LengthPrefixMessageFramer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Framing/LengthPrefixMessageFramer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Framing/LengthPrefixMessageFramerWithBufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Framing/LengthPrefixMessageFramerWithBufferPool.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Framing/PackageFramingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Framing/PackageFramingException.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Framing/StxEtxMessageFramer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Framing/StxEtxMessageFramer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/IMonitoredTcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/IMonitoredTcpConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/ITcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/ITcpConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Locks/SpinLock2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Locks/SpinLock2.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/ReactiveDomain.Transport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/ReactiveDomain.Transport.csproj -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Serialization/IMessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Serialization/IMessageSerializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Serialization/SimpleJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Serialization/SimpleJsonSerializer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Serialization/TcpMessageEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Serialization/TcpMessageEncoder.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/SocketArgsPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/SocketArgsPool.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/SystemData/InspectionDecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/SystemData/InspectionDecision.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/SystemData/InspectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/SystemData/InspectionResult.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/SystemData/TcpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/SystemData/TcpCommand.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/SystemData/TcpPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/SystemData/TcpPackage.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/SystemData/UserCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/SystemData/UserCredentials.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpBus.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpBusClientSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpBusClientSide.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpBusServerSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpBusServerSide.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpClientConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpClientConnector.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpConfiguration.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpConnectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpConnectionBase.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpConnectionLockless.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpConnectionLockless.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpConnectionMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpConnectionMonitor.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpConnectionSsl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpConnectionSsl.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpInboundMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpInboundMessageHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpOutboundMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpOutboundMessageHandler.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpServerListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpServerListener.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpStats.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/TcpTypedConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/TcpTypedConnection.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Util/IPEndPointComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Util/IPEndPointComparer.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.Transport/Util/IpEndPointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.Transport/Util/IpEndPointExtensions.cs -------------------------------------------------------------------------------- /src/ReactiveDomain.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.nuspec -------------------------------------------------------------------------------- /src/ReactiveDomain.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.sln -------------------------------------------------------------------------------- /src/ReactiveDomain.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ReactiveDomain.sln.DotSettings -------------------------------------------------------------------------------- /src/Versions/latest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/Versions/latest.txt -------------------------------------------------------------------------------- /src/build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/build.props -------------------------------------------------------------------------------- /src/ci.build.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/ci.build.imports -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/src/nuget.config -------------------------------------------------------------------------------- /tools/CheckAssemblyVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/tools/CheckAssemblyVersion.ps1 -------------------------------------------------------------------------------- /tools/CreateDebugNuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/tools/CreateDebugNuget.ps1 -------------------------------------------------------------------------------- /tools/CreateNuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/tools/CreateNuget.ps1 -------------------------------------------------------------------------------- /tools/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveDomain/reactive-domain/HEAD/tools/wget.exe --------------------------------------------------------------------------------