├── .gitattributes ├── .gitignore ├── .gitmodules ├── Directory.Build.props ├── Directory.Build.targets ├── DotnetCLIVersion.txt ├── EasyEventStore.sln ├── Ensure-DotNetSdk.cmd ├── EventStore.CrossPlatform.sln ├── EventStore.sln ├── Issue.txt ├── LICENSE.md ├── NuGet.Config ├── README.md ├── ci ├── README.md ├── ap-build-linux.sh ├── ap-setup-osx.sh ├── ap-test-linux.sh └── build │ └── StrongKey.snk ├── clean.cmd ├── etc ├── Directory.Build.props ├── EventStore.Documentation │ ├── DocumentGenerator.cs │ ├── DocumentationGeneration.cs │ ├── EventStore.Documentation.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── EventStore.Rags.sln ├── EventStore.RagsPlayground │ ├── App.config │ ├── Program.cs │ └── RagsPlayground.csproj ├── EventStore.UpgradeProjections │ ├── .gitignore │ ├── App.config │ ├── EventStore.UpgradeProjections.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.txt │ ├── UpgradeProjections.cs │ └── UpgradeProjectionsWorker.cs ├── HdrHistogram │ ├── Encoding │ │ ├── HistogramEncoderV2.cs │ │ ├── IEncoder.cs │ │ ├── IHeader.cs │ │ ├── IRecordedData.cs │ │ ├── RecordedData.cs │ │ ├── V0Header.cs │ │ └── V1Header.cs │ ├── HdrHistogram.csproj │ ├── Histogram.cs │ ├── HistogramBase.cs │ ├── HistogramEncoding.cs │ ├── HistogramExtensions.cs │ ├── HistogramFactoryDelegate.cs │ ├── HistogramLogReader.cs │ ├── HistogramLogWriter.cs │ ├── IHistogramLogV1Reader.cs │ ├── IRecorder.cs │ ├── IntConcurrentHistogram.cs │ ├── IntHistogram.cs │ ├── Iteration │ │ ├── AbstractHistogramEnumerator.cs │ │ ├── AllValueEnumerable.cs │ │ ├── AllValuesEnumerator.cs │ │ ├── HistogramIterationValue.cs │ │ ├── PercentileEnumerable.cs │ │ ├── PercentileEnumerator.cs │ │ ├── RecordedValuesEnumerable.cs │ │ └── RecordedValuesEnumerator.cs │ ├── LongConcurrentHistogram.cs │ ├── LongHistogram.cs │ ├── Output │ │ ├── CsvOutputFormatter.cs │ │ ├── HgrmOutputFormatter.cs │ │ └── IOutputFormatter.cs │ ├── OutputScalingFactor.cs │ ├── Persistence │ │ ├── CountsDecoder.cs │ │ ├── ICountsDecoder.cs │ │ ├── IntCountsDecoder.cs │ │ ├── LongCountsDecoder.cs │ │ ├── ShortCountsDecoder.cs │ │ ├── SimpleCountsDecoder.cs │ │ └── V2MaxWordSizeCountsDecoder.cs │ ├── Recorder.cs │ ├── ShortHistogram.cs │ ├── TimeStamp.cs │ ├── Utilities │ │ ├── ArrayExtensions.cs │ │ ├── AtomicIntArray.cs │ │ ├── AtomicLongArray.cs │ │ ├── Bitwise.cs │ │ ├── ByteBuffer.cs │ │ ├── ByteBufferExtensions.cs │ │ ├── TypeHelper.cs │ │ ├── UnixTimeExtensions.cs │ │ └── WriterReaderPhaser.cs │ └── ZigZagEncoding.cs ├── SimpleSyndicate.UriTemplate │ ├── Collections │ │ └── ObjectModel │ │ │ └── FreezableCollection.cs │ ├── Internals │ │ └── System │ │ │ ├── Runtime │ │ │ ├── ExceptionUtility.cs │ │ │ └── Fx.cs │ │ │ └── ServiceModel │ │ │ ├── Channels │ │ │ ├── HttpHeadersCollection.cs │ │ │ └── HttpRequestMessageProperty.cs │ │ │ ├── DiagnosticUtility.cs │ │ │ ├── SR.cs │ │ │ └── UrlUtility.cs │ ├── README.md │ ├── SimpleSyndicate.UriTemplate.csproj │ ├── UriTemplate.cs │ ├── UriTemplateCompoundPathSegment.cs │ ├── UriTemplateEquivalenceComparer.cs │ ├── UriTemplateHelpers.cs │ ├── UriTemplateLiteralPathSegment.cs │ ├── UriTemplateLiteralQueryValue.cs │ ├── UriTemplateMatch.cs │ ├── UriTemplateMatchException.cs │ ├── UriTemplatePartType.cs │ ├── UriTemplatePathPartiallyEquivalentSet.cs │ ├── UriTemplatePathSegment.cs │ ├── UriTemplateQueryValue.cs │ ├── UriTemplateTable.cs │ ├── UriTemplateTableMatchCandidate.cs │ ├── UriTemplateTrieIntraNodeLocation.cs │ ├── UriTemplateTrieLocation.cs │ ├── UriTemplateTrieNode.cs │ ├── UriTemplateVariablePathSegment.cs │ └── UriTemplateVariableQueryValue.cs ├── eventstore-utils.sln ├── nuget.hdr.props ├── nuget.uri.props ├── version.hdr.props └── version.uri.props ├── gitgc.cmd ├── global.json ├── init-tools.cmd ├── nuget.props ├── nuspecs ├── Google.V8.nuspec ├── Publish │ └── EventStore.GoogleV8.5.0.0.nupkg └── pack.cmd ├── publish.cmd ├── restore.cmd ├── samples ├── Directory.Build.props ├── ES.Producer │ ├── ES.Producer.csproj │ └── Program.cs ├── Es.ConsumerA │ ├── Es.ConsumerA.csproj │ └── Program.cs ├── Es.ConsumerB │ ├── Es.ConsumerB.csproj │ ├── Program.cs │ └── StreamConsumers.cs ├── Es.Receiver │ ├── Es.Receiver.csproj │ └── Program.cs └── Es.SharedModels │ ├── Es.SharedModels.csproj │ └── TestEvents.cs ├── scripts ├── build-js1 │ ├── build-js1-linux │ │ ├── Dockerfile │ │ ├── README.md │ │ └── build-js1-linux │ │ │ └── build-js1-linux.sh │ ├── build-js1-mac │ │ └── build-js1-mac.sh │ └── build-js1-win │ │ └── build-js1-win-instructions.md ├── nuget-clientapi │ ├── EventStore.Client.Embedded.nuspec │ ├── EventStore.Client.Embedded.targets │ ├── EventStore.Client.nuspec │ └── package-clientapi.ps1 ├── opts-doc-gen │ ├── generate-documentation.ps1 │ └── generate-documentation.sh └── protogen │ ├── generate-clientmessages-from-proto.ps1 │ └── generate-clientmessages-from-proto.sh ├── src ├── Directory.Build.props ├── EventStore.BufferManagement.Tests │ ├── BufferManagerTests.cs │ ├── BufferPoolStreamTests.cs │ ├── BufferPoolTests.cs │ ├── EventStore.BufferManagement.Tests.csproj │ └── run.cmd ├── EventStore.BufferManagement │ ├── BufferManager.cs │ ├── BufferPool.cs │ ├── BufferPoolStream.cs │ ├── EventStore.BufferManagement.csproj │ ├── UnableToAllocateBufferException.cs │ └── UnableToCreateMemoryException.cs ├── EventStore.ClientAPI.Abstractions │ ├── AllCheckpoint.cs │ ├── AllEventsSlice.cs │ ├── AutoSubscribing │ │ ├── AutoSubscriberConsumerAttribute.cs │ │ ├── AutoSubscriberConsumerInfo.cs │ │ ├── AutoSubscriberRetryPolicyAttribute.cs │ │ ├── AutoSubscriberUserCredentialAttribute.cs │ │ ├── CatchUpSubscriptionConfigurationAttribute.cs │ │ ├── ConnectToCatchUpSubscriptionConfigurationAttribute.cs │ │ ├── ConnectToPersistentSubscriptionConfigurationAttribute.cs │ │ ├── ConnectToVolatileSubscriptionConfigurationAttribute.cs │ │ ├── ForTopicAttribute.cs │ │ ├── IAutoSubscriberConsume.cs │ │ ├── IAutoSubscriberConsumeAsync.cs │ │ ├── IAutoSubscriberConsumerRegistration.cs │ │ ├── IAutoSubscriberHandlerRegistration.cs │ │ ├── PersistentSubscriptionConfigurationAttribute.cs │ │ ├── SubscriptionConfigurationExtensions.cs │ │ └── SubscriptionType.cs │ ├── CatchUpSubscriptionSettings.cs │ ├── ClientApiConstants.cs │ ├── ClusterSettings.cs │ ├── ClusterSettingsBuilder.cs │ ├── Common │ │ ├── MatchHandler │ │ │ └── HandlerKind.cs │ │ ├── SystemNames.cs │ │ └── Utils │ │ │ ├── ActionMatchBuilder.cs │ │ │ ├── ActionMatchBuilder.tt │ │ │ ├── FuncMatchBuilder.cs │ │ │ ├── FuncMatchBuilder.tt │ │ │ └── SimpleMatchBuilder.cs │ ├── ConditionalWriteFailureReason.cs │ ├── ConditionalWriteResult.cs │ ├── ConfigUtils.cs │ ├── ConnectToPersistentSubscriptionSettings.cs │ ├── ConnectingPhase.cs │ ├── ConnectionSettings.cs │ ├── ConnectionSettingsBuilder.cs │ ├── ConnectionState.cs │ ├── DeleteResult.cs │ ├── DnsClusterSettingsBuilder.cs │ ├── EventData.cs │ ├── EventReadResult (of T).cs │ ├── EventReadResult.cs │ ├── EventReadStatus.cs │ ├── EventStore.ClientAPI.Abstractions.csproj │ ├── ExpectedVersion.cs │ ├── GossipSeed.cs │ ├── GossipSeedClusterSettingsBuilder.cs │ ├── IConsumerRegistration.cs │ ├── IEndPointDiscoverer.cs │ ├── IEventAdapter.cs │ ├── IEventAdapterProvider.cs │ ├── IEventDescriptor.cs │ ├── IEventMetadata.cs │ ├── IFullEvent.cs │ ├── IHandlerCollection.cs │ ├── IHandlerRegistration.cs │ ├── IPersistentSubscriptionResolvedEvent.cs │ ├── IRecordedEvent.cs │ ├── IResolvedEvent.cs │ ├── IStreamCheckpointer.cs │ ├── IStreamEventsSlice.cs │ ├── Internal │ │ ├── Consts.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ ├── NodeEndPoints.cs │ ├── NodePreference.cs │ ├── PersistentSubscriptionNakEventAction.cs │ ├── PersistentSubscriptionResolvedEvent (of T).cs │ ├── PersistentSubscriptionResolvedEvent.cs │ ├── PersistentSubscriptionSettings.cs │ ├── PersistentSubscriptionSettingsBuilder.cs │ ├── Position.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RawStreamMetadataResult.cs │ ├── ReadDirection.cs │ ├── RecordedEvent (of T).cs │ ├── RecordedEvent.cs │ ├── Resilience │ │ ├── RetryPolicy.cs │ │ └── SleepDurationProviderType.cs │ ├── ResolvedEvent (of T).cs │ ├── ResolvedEvent.cs │ ├── SliceReadStatus.cs │ ├── StreamAttribute.cs │ ├── StreamCheckpoint.cs │ ├── StreamEventsSlice (of T).cs │ ├── StreamEventsSlice.cs │ ├── StreamMetadataAttribute.cs │ ├── StreamPosition.cs │ ├── SubscriptionDropReason.cs │ ├── SubscriptionSettings.cs │ ├── SystemData │ │ └── UserCredentials.cs │ ├── Transport.Http │ │ ├── HttpResponse.cs │ │ └── IHttpClient.cs │ └── WriteResult.cs ├── EventStore.ClientAPI.Consumer │ ├── AutoSubscribing │ │ └── AutoSubscriber.cs │ ├── Consumers │ │ ├── CatchUpConsumer (of TEvent).cs │ │ ├── CatchUpConsumer.cs │ │ ├── IStreamConsumer.cs │ │ ├── IStreamConsumerGenerator.cs │ │ ├── PersistentConsumer (of TEvent).cs │ │ ├── PersistentConsumer.cs │ │ ├── StreamConsumer (of TEvent).cs │ │ ├── StreamConsumer.cs │ │ ├── StreamConsumerBase.cs │ │ ├── VolatileConsumer (of TEvent).cs │ │ └── VolatileConsumer.cs │ ├── EventStore.ClientAPI.Consumer.csproj │ ├── Internal │ │ ├── LoggingExtensions.cs │ │ └── ThrowHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resilience │ │ └── DroppedSubscriptionPolicy.cs │ └── Subscriptions │ │ ├── CatchUpSubscription (of TEvent).cs │ │ ├── CatchUpSubscription.cs │ │ ├── DroppedSubscription.cs │ │ ├── ISubscription.cs │ │ ├── PersistentSubscription (of TEvent).cs │ │ ├── PersistentSubscription.cs │ │ ├── Subscription (of TEvent).cs │ │ ├── Subscription.cs │ │ ├── VolatileSubscription (of TEvent).cs │ │ └── VolatileSubscription.cs ├── EventStore.ClientAPI.Embedded │ ├── AuthenticationExtensions.cs │ ├── ClientMessageConverterExtensions.cs │ ├── EmbeddedAuthenticationRequest.cs │ ├── EmbeddedEventStoreConnection.cs │ ├── EmbeddedEventStorePersistentSubscription.cs │ ├── EmbeddedPersistentSubscription.cs │ ├── EmbeddedResponderBase.cs │ ├── EmbeddedResponders.cs │ ├── EmbeddedResponseEnvelope.cs │ ├── EmbeddedSubcriptionsManager.cs │ ├── EmbeddedSubscriber.cs │ ├── EmbeddedSubscription.cs │ ├── EmbeddedSubscriptionBase.cs │ ├── EmbeddedVNodeBuilder.cs │ ├── EmbeddedVolatileEventStoreSubscription.cs │ ├── EventStore.ClientAPI.Embedded.csproj │ ├── EventStoreEmbeddedNodeConnection.cs │ ├── IEmbeddedSubscription.cs │ └── Internal │ │ ├── LoggingExtensions.cs │ │ └── ThrowHelper.cs ├── EventStore.ClientAPI │ ├── AutoSubscribing │ │ ├── ConsumerExpressionBuilder.cs │ │ ├── IAutoSubscriberCatchUpConsume.cs │ │ ├── IAutoSubscriberCatchUpConsumeAsync.cs │ │ ├── IAutoSubscriberPersistentConsume.cs │ │ ├── IAutoSubscriberPersistentConsumeAsync.cs │ │ ├── IAutoSubscriberVolatileConsume.cs │ │ └── IAutoSubscriberVolatileConsumeAsync.cs │ ├── ClientAuthenticationFailedEventArgs.cs │ ├── ClientClosedEventArgs.cs │ ├── ClientConnectionEventArgs.cs │ ├── ClientErrorEventArgs.cs │ ├── ClientOperations │ │ ├── AppendToStreamOperation.cs │ │ ├── CommitTransactionOperation.cs │ │ ├── ConditionalAppendToStreamOperation.cs │ │ ├── ConnectToPersistentSubscriptionOperation.cs │ │ ├── CreatePersistentSubscriptionOperation.cs │ │ ├── DeletePersistentSubscriptionOperation.cs │ │ ├── DeleteStreamOperation.cs │ │ ├── IClientOperation.cs │ │ ├── ISubscriptionOperation.cs │ │ ├── OperationBase.cs │ │ ├── ReadAllEventsBackwardOperation.cs │ │ ├── ReadAllEventsForwardOperation.cs │ │ ├── ReadEventOperation.cs │ │ ├── ReadStreamEventsBackwardOperation.cs │ │ ├── ReadStreamEventsForwardOperation.cs │ │ ├── StartTransactionOperation.cs │ │ ├── SubscriptionOperation.cs │ │ ├── TransactionalWriteOperation.cs │ │ ├── UpdatePersistentSubscriptionOperation.cs │ │ └── VolatileSubscriptionOperation.cs │ ├── ClientReconnectingEventArgs.cs │ ├── Common │ │ └── Utils │ │ │ ├── Helper.cs │ │ │ ├── Json.cs │ │ │ └── Threading │ │ │ ├── TaskCompletionSourceFactory.cs │ │ │ └── TaskExtensions.cs │ ├── ConnectionString.cs │ ├── DefaultEventAdapter.cs │ ├── DefaultHandlerCollection.cs │ ├── EventManager.cs │ ├── EventStore.ClientAPI.csproj │ ├── EventStoreCatchUpSubscription.Logging.cs │ ├── EventStoreCatchUpSubscription.cs │ ├── EventStoreConnection.cs │ ├── EventStorePersistentSubscription.cs │ ├── EventStorePersistentSubscriptionBase.cs │ ├── EventStoreSubscription.cs │ ├── EventStoreTransaction.cs │ ├── EventStoreTransactionExtensions.cs │ ├── Exceptions │ │ ├── AccessDeniedException.cs │ │ ├── CannotEstablishConnectionException.cs │ │ ├── ClusterException.cs │ │ ├── CommandNotExpectedException.cs │ │ ├── ConnectionClosedException.cs │ │ ├── EventDataDeserializationException.cs │ │ ├── EventMetadataDeserializationException.cs │ │ ├── EventStoreConnectionException.cs │ │ ├── EventStoreHandlerException.cs │ │ ├── InvalidTransactionException.cs │ │ ├── NoResultException.cs │ │ ├── NotAuthenticatedException.cs │ │ ├── OperationExpiredException.cs │ │ ├── OperationNotSupportedException.cs │ │ ├── OperationTimedOutException.cs │ │ ├── PersistentSubscriptionCommandFailedException.cs │ │ ├── ProjectionCommandConflictException.cs │ │ ├── ProjectionCommandFailedException.cs │ │ ├── RetriesLimitReachedException.cs │ │ ├── ServerErrorException.cs │ │ ├── StreamDeletedException.cs │ │ ├── UserCommandConflictException.cs │ │ ├── UserCommandFailedException.cs │ │ └── WrongExpectedVersionException.cs │ ├── IConnectToPersistentSubscriptions.cs │ ├── IEventStoreBus.cs │ ├── IEventStoreConnection.cs │ ├── IEventStoreConnection2.cs │ ├── IEventStoreConnectionBase.cs │ ├── IEventStoreConnectionExtensions.Append.cs │ ├── IEventStoreConnectionExtensions.CatchUp.cs │ ├── IEventStoreConnectionExtensions.Get.cs │ ├── IEventStoreConnectionExtensions.Metadata.cs │ ├── IEventStoreConnectionExtensions.Persistent.cs │ ├── IEventStoreConnectionExtensions.Publish.cs │ ├── IEventStoreConnectionExtensions.Read.cs │ ├── IEventStoreConnectionExtensions.Send.cs │ ├── IEventStoreConnectionExtensions.Volatile.cs │ ├── IEventStoreConnectionExtensions.cs │ ├── Internal │ │ ├── ClusterDnsEndPointDiscoverer.cs │ │ ├── CompositeDisposable.cs │ │ ├── DefaultEventDescriptor.cs │ │ ├── DefaultFullEvent.cs │ │ ├── Empty.cs │ │ ├── EventMetadata.cs │ │ ├── EventStoreConnectionLogicHandler.Logging.cs │ │ ├── EventStoreConnectionLogicHandler.cs │ │ ├── EventStoreNodeConnection.EventAdapter.cs │ │ ├── EventStoreNodeConnection.cs │ │ ├── IEventStoreConnectionLogicHandler.cs │ │ ├── IEventStoreTransactionConnection.cs │ │ ├── IPEndPointExtensions.cs │ │ ├── LoggingExtensions.cs │ │ ├── Messages.cs │ │ ├── OperationsManager.Logging.cs │ │ ├── OperationsManager.cs │ │ ├── PersistentSubscriptionCreateResult.cs │ │ ├── PersistentSubscriptionCreateStatus.cs │ │ ├── PersistentSubscriptionDeleteResult.cs │ │ ├── PersistentSubscriptionDeleteStatus.cs │ │ ├── PersistentSubscriptionUpdateResult.cs │ │ ├── PersistentSubscriptionUpdateStatus.cs │ │ ├── SimpleQueuedHandler.cs │ │ ├── StaticEndPointDiscoverer.cs │ │ ├── SubscriptionsManager.Logging.cs │ │ ├── SubscriptionsManager.cs │ │ ├── ThrowHelper.cs │ │ └── VolatileEventStoreSubscription.cs │ ├── Messages │ │ ├── ClientMessagesExtensions.cs │ │ └── ClusterMessages.cs │ ├── PersistentEventStoreSubscription.cs │ ├── PersistentSubscriptions │ │ ├── PersistentSubscriptionDetails.cs │ │ ├── PersistentSubscriptionsClient.cs │ │ └── PersistentSubscriptionsManager.cs │ ├── Projections │ │ ├── ProjectionConfig.cs │ │ ├── ProjectionDetails.cs │ │ ├── ProjectionsClient.cs │ │ ├── ProjectionsManager.cs │ │ └── QueryManager.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StreamAcl.cs │ ├── StreamMetadata.cs │ ├── StreamMetadataBuilder.cs │ ├── StreamMetadataExtensions.cs │ ├── StreamMetadataResult.cs │ ├── SubscriptionSettingsExtensions.cs │ ├── SystemData │ │ ├── InspectionDecision.cs │ │ ├── InspectionResult.cs │ │ └── StatusCode.cs │ ├── SystemSettings.cs │ ├── Transport.Http │ │ ├── AsyncStreamCopier.cs │ │ ├── ClientOperationState.cs │ │ ├── ContentType.cs │ │ ├── EndpointExtensions.cs │ │ ├── HttpAsyncClient.cs │ │ ├── HttpMethod.cs │ │ ├── HttpStatusCode.cs │ │ └── WebRequestExtensions.cs │ ├── Transport.Tcp │ │ ├── IConnectionEventHandler.cs │ │ └── TcpPackageConnection.cs │ └── UserManagement │ │ ├── ChangePasswordDetails.cs │ │ ├── RelLink.cs │ │ ├── ResetPasswordDetails.cs │ │ ├── UserCreationInformation.cs │ │ ├── UserDetails.cs │ │ ├── UserUpdateInformation.cs │ │ ├── UsersClient.cs │ │ └── UsersManager.cs ├── EventStore.ClusterNode.DotNetCore │ ├── App.config │ ├── EventStore.ClusterNode.DotNetCore.csproj │ ├── Program.cs │ ├── clean.bat │ ├── publish.fde.darwin.cmd │ ├── publish.fde.linux.cmd │ ├── publish.scd.darwin.cmd │ └── publish.scd.linux.cmd ├── EventStore.ClusterNode.Services │ ├── ClusterConfiguration.yaml │ ├── ClusterNodeOptions.DotNetty.cs │ ├── EventStore.ClusterNode.Services.csproj │ ├── EventStoreService.cs │ ├── EventStoreServiceBase.cs │ ├── EventStoreServiceFactory.cs │ └── IEventStoreService.cs ├── EventStore.ClusterNode.Web │ ├── EventStore.ClusterNode.Web.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── clusternode-web-r │ │ ├── apple-touch-icon.png │ │ ├── css │ │ │ └── main.min.css │ │ ├── es-tile.png │ │ ├── favicon.png │ │ ├── fonts │ │ │ ├── SIL Open Font License.txt │ │ │ ├── roboto-bold-webfont.woff │ │ │ ├── roboto-bold-webfont.woff2 │ │ │ ├── roboto-bolditalic-webfont.woff │ │ │ ├── roboto-bolditalic-webfont.woff2 │ │ │ ├── roboto-italic-webfont.woff │ │ │ ├── roboto-italic-webfont.woff2 │ │ │ ├── roboto-regular-webfont.woff │ │ │ ├── roboto-regular-webfont.woff2 │ │ │ ├── sourcecodepro-bold-webfont.woff │ │ │ ├── sourcecodepro-bold-webfont.woff2 │ │ │ ├── sourcecodepro-regular-webfont.woff │ │ │ └── sourcecodepro-regular-webfont.woff2 │ │ ├── images │ │ │ ├── clipboard--hover.svg │ │ │ ├── clipboard.svg │ │ │ └── logo.svg │ │ ├── index.html │ │ └── js │ │ │ ├── ace │ │ │ ├── ace.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── theme-monokai.js │ │ │ ├── worker-javascript.js │ │ │ └── worker-json.js │ │ │ ├── app.min.js │ │ │ └── requirejs.min.js │ ├── clusternode-web │ │ ├── apple-touch-icon.png │ │ ├── css │ │ │ └── main.min.css │ │ ├── es-tile.png │ │ ├── favicon.png │ │ ├── fonts │ │ │ ├── SIL Open Font License.txt │ │ │ ├── roboto-bold-webfont.woff │ │ │ ├── roboto-bold-webfont.woff2 │ │ │ ├── roboto-bolditalic-webfont.woff │ │ │ ├── roboto-bolditalic-webfont.woff2 │ │ │ ├── roboto-italic-webfont.woff │ │ │ ├── roboto-italic-webfont.woff2 │ │ │ ├── roboto-regular-webfont.woff │ │ │ ├── roboto-regular-webfont.woff2 │ │ │ ├── sourcecodepro-bold-webfont.woff │ │ │ ├── sourcecodepro-bold-webfont.woff2 │ │ │ ├── sourcecodepro-regular-webfont.woff │ │ │ └── sourcecodepro-regular-webfont.woff2 │ │ ├── images │ │ │ ├── clipboard--hover.svg │ │ │ ├── clipboard.svg │ │ │ └── logo.svg │ │ ├── index.html │ │ └── js │ │ │ ├── ace │ │ │ ├── ace.js │ │ │ ├── mode-javascript.js │ │ │ ├── mode-json.js │ │ │ ├── theme-monokai.js │ │ │ ├── worker-javascript.js │ │ │ └── worker-json.js │ │ │ ├── app.min.js │ │ │ └── requirejs.min.js │ └── projections │ │ └── es.projections.environment.js ├── EventStore.ClusterNode.WindowsServices │ ├── App.config │ ├── EventStore.ClusterNode.WindowsServices.csproj │ ├── Program.cs │ ├── clean.bat │ ├── publish.fde.cmd │ ├── publish.scd.cmd │ ├── win.bat │ ├── winsvcreg.cmd │ ├── winsvcstart.cmd │ ├── winsvcstop.cmd │ └── winsvcunreg.cmd ├── EventStore.ClusterNode │ ├── ClusterNodeOptions.cs │ ├── ClusterVNodeBuilder.cs │ ├── EventStore.ClusterNode.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app2.ico ├── EventStore.Common.Utils.Sources │ ├── Ensure.cs │ ├── EventStore.Common.Utils.Sources.projitems │ └── EventStore.Common.Utils.Sources.shproj ├── EventStore.Common.Utils │ ├── EventStore.Common.Utils.csproj │ └── Runtime.cs ├── EventStore.Common │ ├── EventStore.Common.csproj │ ├── Exceptions │ │ └── ApplicationInitializationException.cs │ ├── Internal │ │ ├── LoggingExtensions.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ ├── Options │ │ ├── EventStoreOptions.cs │ │ ├── IOptions.cs │ │ └── ProjectionType.cs │ ├── Properties │ │ └── JetbrainsAnnotations.cs │ └── Utils │ │ ├── Application.cs │ │ ├── BooleanTypeConverter.cs │ │ ├── BytesFormatter.cs │ │ ├── Empty.cs │ │ ├── EndpointExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FileStreamExtensions.cs │ │ ├── Helper.cs │ │ ├── HostName.cs │ │ ├── IPAddressConverter.cs │ │ ├── IPEndPointArrayConverter.cs │ │ ├── IPEndPointComparer.cs │ │ ├── IPEndpointConverter.cs │ │ ├── IPFinder.cs │ │ ├── Json.cs │ │ ├── Locations.cs │ │ ├── OS.cs │ │ ├── Platforms.cs │ │ ├── ShellExecutor.cs │ │ ├── StringExtensions.cs │ │ └── VersionInfo.cs ├── EventStore.Core.Messages │ ├── EventStore.Core.Messages.csproj │ ├── OperationResult.cs │ ├── TcpClientMessageDto.cs │ ├── TcpCommand.cs │ └── TcpPackage.cs ├── EventStore.Core.Tests │ ├── AssertEx.cs │ ├── Authentication │ │ ├── StubPasswordHashAlgorithm.cs │ │ ├── when_handling_multiple_requests_with_reset_password_cache_in_between.cs │ │ ├── when_handling_multiple_requests_with_the_same_correct_user_name_and_password.cs │ │ └── with_internal_authentication_provider.cs │ ├── AwakeService │ │ ├── when_creating.cs │ │ ├── when_handling_comitted_event.cs │ │ ├── when_handling_committed_event_after_unsybscribe.cs │ │ ├── when_handling_committed_event_with_subscribers.cs │ │ ├── when_handling_subscribe_awake.cs │ │ └── when_subscribing_before_last_position_with_already_committed_events.cs │ ├── Bus │ │ ├── FSMSpeedTest.cs │ │ ├── Helpers │ │ │ ├── BusTestMessages.cs │ │ │ ├── Messages.cs │ │ │ ├── NoopConsumer.cs │ │ │ ├── QueuedHandlerTestWithNoopConsumer.cs │ │ │ ├── QueuedHandlerTestWithWaitingConsumer.cs │ │ │ ├── TestHandler.cs │ │ │ ├── TestMultiHandler.cs │ │ │ ├── TimeoutHelper.cs │ │ │ └── WaitingConsumer.cs │ │ ├── QueueSpeedTest.cs │ │ ├── queued_handler_should.cs │ │ ├── when_consumer_throws.cs │ │ ├── when_publishing_into_memory_bus.cs │ │ ├── when_publishing_to_queued_handler.cs │ │ ├── when_publishing_to_queued_handler_before_starting.cs │ │ ├── when_stopping_queued_handler.cs │ │ ├── when_subscribing_to_memory_bus.cs │ │ ├── when_unsubscribing_from_memory_bus.cs │ │ └── when_using_single_consumer_queue.cs │ ├── ClientAPI │ │ ├── Embedded │ │ │ ├── Security │ │ │ │ └── authorized_default_credentials_security.cs │ │ │ ├── append_to_stream.cs │ │ │ ├── appending_to_implicitly_created_stream.cs │ │ │ ├── appending_to_implicitly_created_stream_using_transaction.cs │ │ │ ├── connecting_to_a_persistent_subscription.cs │ │ │ ├── connecting_to_a_persistent_subscription_async.cs │ │ │ ├── create_persistent_subscription.cs │ │ │ ├── deleting_persistent_subscription.cs │ │ │ ├── deleting_stream.cs │ │ │ ├── isjson_flag_on_event.cs │ │ │ ├── persistent_connect_integration_tests.cs │ │ │ ├── read_all_events_backward_should.cs │ │ │ ├── read_all_events_forward_should.cs │ │ │ ├── read_all_events_forward_with_hard_deleted_stream_should.cs │ │ │ ├── read_all_events_forward_with_soft_deleted_stream_should.cs │ │ │ ├── read_event_should.cs │ │ │ ├── read_event_stream_backward_should.cs │ │ │ ├── read_event_stream_forward_should.cs │ │ │ ├── read_stream_events_with_unresolved_linkto.cs │ │ │ ├── soft_delete.cs │ │ │ ├── subscribe_should.cs │ │ │ ├── subscribe_to_all_catching_up_should.cs │ │ │ ├── subscribe_to_all_should.cs │ │ │ ├── subscribe_to_stream_catching_up_should.cs │ │ │ ├── transaction.cs │ │ │ ├── update_persistent_subscription.cs │ │ │ ├── when_committing_empty_transaction.cs │ │ │ ├── when_having_max_count_set_for_stream.cs │ │ │ ├── when_having_truncatebefore_set_for_stream.cs │ │ │ ├── when_working_with_stream_metadata_as_byte_array.cs │ │ │ └── when_working_with_stream_metadata_as_structured_info.cs │ │ ├── ExpectedVersion64Bit │ │ │ ├── MiniNodeWithExistingRecords.cs │ │ │ ├── append_to_stream_with_event_numbers_greater_than_2_billion.cs │ │ │ ├── catchup_subscription_to_all_with_event_numbers_greater_than_2_billion.cs │ │ │ ├── persistent_subscription_with_event_numbers_greater_than_2_billion.cs │ │ │ ├── read_stream_with_event_numbers_greater_than_2_billion.cs │ │ │ ├── read_stream_with_link_to_event_with_event_number_greater_than_int_maxvalue.cs │ │ │ ├── subscribe_to_stream_with_link_to_event_with_event_number_greater_than_int_maxvalue.cs │ │ │ ├── subscriptions_on_stream_with_event_numbers_greater_than_2_billion.cs │ │ │ └── transactions_on_stream_with_event_numbers_greater_than_2_billion.cs │ │ ├── Helpers │ │ │ ├── EventDataComparer.cs │ │ │ ├── EventsStream.cs │ │ │ ├── TcpType.cs │ │ │ ├── TestConnection.cs │ │ │ ├── TestEvent.cs │ │ │ └── Writer.cs │ │ ├── Security │ │ │ ├── AuthenticationTestBase.cs │ │ │ ├── all_stream_with_no_acl_security.cs │ │ │ ├── authorized_default_credentials_security.cs │ │ │ ├── delete_stream_security.cs │ │ │ ├── multiple_role_security.cs │ │ │ ├── overriden_system_stream_security.cs │ │ │ ├── overriden_system_stream_security_for_all.cs │ │ │ ├── overriden_user_stream_security.cs │ │ │ ├── read_all_security.cs │ │ │ ├── read_stream_meta_security.cs │ │ │ ├── read_stream_security.cs │ │ │ ├── stream_security_inheritance.cs │ │ │ ├── subscribe_to_all_security.cs │ │ │ ├── subscribe_to_stream_security.cs │ │ │ ├── system_stream_security.cs │ │ │ ├── transactional_write_stream_security.cs │ │ │ ├── write_stream_meta_security.cs │ │ │ └── write_stream_security.cs │ │ ├── SpecificationWithLinkToToDeletedEvents.cs │ │ ├── SpecificationWithLinkToToMaxCountDeletedEvents.cs │ │ ├── SpecificationWithMiniNode.cs │ │ ├── SystemData │ │ │ └── clientapi_tcp_package.cs │ │ ├── UserManagement │ │ │ ├── TestWithNode.cs │ │ │ ├── TestWithUser.cs │ │ │ ├── creating_a_user.cs │ │ │ ├── deleting_a_user.cs │ │ │ ├── enable_disable_user.cs │ │ │ ├── get_current_user.cs │ │ │ ├── list_users.cs │ │ │ ├── reset_change_password.cs │ │ │ └── updating_a_user.cs │ │ ├── append_to_stream.cs │ │ ├── append_to_stream_with_hash_collision.cs │ │ ├── appending_to_implicitly_created_stream.cs │ │ ├── appending_to_implicitly_created_stream_using_transaction.cs │ │ ├── catch_up_subscription_handles_errors.cs │ │ ├── catchup_subscription_handles_small_batch_sizes.cs │ │ ├── connect.cs │ │ ├── connecting_to_a_persistent_subscription.cs │ │ ├── connecting_to_a_persistent_subscription_async.cs │ │ ├── connecting_with_connection_string.cs │ │ ├── connection_string.cs │ │ ├── create_persistent_subscription.cs │ │ ├── deleting_persistent_subscription.cs │ │ ├── deleting_stream.cs │ │ ├── event_store_connection_should.cs │ │ ├── isjson_flag_on_event.cs │ │ ├── persistent_connect_integration_tests.cs │ │ ├── read_all_events_backward_should.cs │ │ ├── read_all_events_forward_should.cs │ │ ├── read_all_events_forward_with_hard_deleted_stream_should.cs │ │ ├── read_all_events_forward_with_linkto_passed_max_count.cs │ │ ├── read_all_events_forward_with_linkto_to_deleted_event.cs │ │ ├── read_all_events_forward_with_soft_deleted_stream_should.cs │ │ ├── read_allevents_backward_with_linkto_deleted_event.cs │ │ ├── read_event_should.cs │ │ ├── read_event_stream_backward_should.cs │ │ ├── read_event_stream_forward_should.cs │ │ ├── read_event_with_hash_collision.cs │ │ ├── read_stream_events_backward_with_hash_collision.cs │ │ ├── read_stream_events_forward_with_hash_collision.cs │ │ ├── read_stream_events_with_unresolved_linkto.cs │ │ ├── soft_delete.cs │ │ ├── subscribe_should.cs │ │ ├── subscribe_to_all_catching_up_should.cs │ │ ├── subscribe_to_all_should.cs │ │ ├── subscribe_to_stream_catching_up_should.cs │ │ ├── transaction.cs │ │ ├── update_persistent_subscription.cs │ │ ├── when_committing_empty_transaction.cs │ │ ├── when_having_max_count_set_for_stream.cs │ │ ├── when_having_truncatebefore_set_for_stream.cs │ │ ├── when_working_with_metadata.cs │ │ ├── when_working_with_stream_metadata_as_byte_array.cs │ │ └── when_working_with_stream_metadata_as_structured_info.cs │ ├── Common │ │ ├── EventStoreOptionsTests │ │ │ ├── TestArgs.cs │ │ │ └── when_parsing │ │ │ │ ├── with_a_complex_type.cs │ │ │ │ ├── with_a_config_file.cs │ │ │ │ ├── with_arguments.cs │ │ │ │ ├── with_arguments_and_config_files.cs │ │ │ │ ├── with_command_line_argument_with_config_file_and_environment_variable.cs │ │ │ │ ├── with_config_file_and_environment_variable.cs │ │ │ │ ├── with_incorrectly_cased_option_in_config.cs │ │ │ │ ├── with_invalid_format.cs │ │ │ │ ├── with_long_form_argument.cs │ │ │ │ ├── with_no_arguments.cs │ │ │ │ ├── with_no_arguments_and_environment_variables_exist.cs │ │ │ │ └── with_unknown_options.cs │ │ └── VNodeBuilderTests │ │ │ ├── TestAuthentictaionProviderFactory.cs │ │ │ ├── TestVNodeBuilder.cs │ │ │ ├── VNodeBuilderScenarios.cs │ │ │ └── when_building │ │ │ ├── with_cluster_node_and_custom_settings.cs │ │ │ ├── with_default_settings.cs │ │ │ ├── with_secure_tcp.cs │ │ │ └── with_single_node_and_custom_settings.cs │ ├── CountdownEventExtensions.cs │ ├── DataStructures │ │ ├── bloom_filter_should.cs │ │ └── pairing_heap_should.cs │ ├── DefaultData.cs │ ├── EventStore.Core.Tests.csproj │ ├── Fakes │ │ ├── FakeLogger.cs │ │ ├── FakePublisher.cs │ │ ├── FakeTfReader.cs │ │ └── NoopPublisher.cs │ ├── Hashes │ │ ├── MD5HashTests.cs │ │ ├── SMHasher.cs │ │ ├── murmur2_hash_should.cs │ │ ├── murmur3a_hash_should.cs │ │ └── xxhash_hash_should.cs │ ├── Helpers │ │ ├── ClientApiLoggerBridge.cs │ │ ├── CollectionsExtensions.cs │ │ ├── HelperExtensions.cs │ │ ├── IODispatcherTests │ │ │ ├── IODispatcherTestHelpers.cs │ │ │ ├── QueueWriteEventsTests │ │ │ │ ├── when_a_write_completes.cs │ │ │ │ ├── when_requesting_multiple_writes_with_different_keys.cs │ │ │ │ └── when_requesting_multiple_writes_with_the_same_key.cs │ │ │ └── ReadEventsTests │ │ │ │ ├── async_read_stream_events_backward_with_cancelled_read.cs │ │ │ │ ├── async_read_stream_events_forward_with_cancelled_read.cs │ │ │ │ ├── read_stream_events_backward_with_successful_read.cs │ │ │ │ ├── read_stream_events_backward_with_timeout_on_read.cs │ │ │ │ ├── read_stream_events_forward_with_successful_read.cs │ │ │ │ ├── read_stream_events_forward_with_timeout_on_read.cs │ │ │ │ └── with_read_io_dispatcher.cs │ │ ├── LengthPrefixSuffixFramer.cs │ │ ├── ManualQueue.cs │ │ ├── MiniClusterNode.cs │ │ ├── MiniNode.cs │ │ ├── PortsHelper.cs │ │ ├── ReflectionDynamic.cs │ │ ├── TestFixtureWithExistingEvents.cs │ │ ├── TestFixtureWithReadWriteDispatchers.cs │ │ └── TestHelper.cs │ ├── Http │ │ ├── ArgumentPassing │ │ │ └── matching.cs │ │ ├── BasicAuthentication │ │ │ └── basic_authentication.cs │ │ ├── HttpBehaviorSpecification.cs │ │ ├── PersistentSubscription │ │ │ ├── ack.cs │ │ │ ├── creating.cs │ │ │ ├── deleting.cs │ │ │ ├── feed.cs │ │ │ ├── getting.cs │ │ │ ├── nack.cs │ │ │ ├── parked.cs │ │ │ ├── statistics.cs │ │ │ └── updating.cs │ │ ├── StreamSecurity │ │ │ ├── SetUpFixture.cs │ │ │ ├── SpecificationWithUsers.cs │ │ │ └── stream_access.cs │ │ ├── Streams │ │ │ ├── HttpSpecificationWithLinkToToDeletedEvents.cs │ │ │ ├── HttpSpecificationWithLinkToToEvents.cs │ │ │ ├── SetUpFixture.cs │ │ │ ├── SpecificationWithLinkToToMaxCountDeletedEvents.cs │ │ │ ├── XDocumentAtomExtensions.cs │ │ │ ├── append_to_stream.cs │ │ │ ├── basic.cs │ │ │ ├── description_document.cs │ │ │ ├── feed.cs │ │ │ ├── idempotency.cs │ │ │ └── metadata.cs │ │ ├── TestController.cs │ │ ├── TestSuiteMarkerBase.cs │ │ └── Users │ │ │ ├── StreamHelpers.cs │ │ │ └── users.cs │ ├── Index │ │ ├── AutoMergeLevelTests │ │ │ ├── rolling_manual_only_merges.cs │ │ │ ├── when_auto_merge_level_is_zero.cs │ │ │ ├── when_max_auto_merge_level_is_reduced.cs │ │ │ ├── when_max_auto_merge_level_is_set.cs │ │ │ ├── when_multiple_tables_higher_than_manual_merge_level.cs │ │ │ ├── when_no_tables_are_eligible_for_manual_merge.cs │ │ │ ├── when_no_tables_have_yet_reached_maximum_automerge_level.cs │ │ │ ├── when_only_one_table_file_higher_than_manual_merge_level.cs │ │ │ └── when_tables_available_for_manual_merge.cs │ │ ├── FakeFilenameProvider.cs │ │ ├── FakeIndexHasher.cs │ │ ├── FakeIndexReader.cs │ │ ├── IndexEntryTests.cs │ │ ├── IndexMapTestFactory.cs │ │ ├── IndexV1 │ │ │ ├── PTableReadScenario.cs │ │ │ ├── adding_four_items_to_empty_index_map_with_four_tables_per_level_causes_merge.cs │ │ │ ├── adding_four_items_to_empty_index_map_with_two_tables_per_level_causes_double_merge.cs │ │ │ ├── adding_item_to_empty_index_map.cs │ │ │ ├── adding_sixteen_items_to_empty_index_map_with_four_tables_per_level_causes_double_merge.cs │ │ │ ├── adding_two_items_to_empty_index_map_with_two_tables_per_level_causes_merge.cs │ │ │ ├── corrupt_index_should.cs │ │ │ ├── destroying_ptable.cs │ │ │ ├── index_map_should.cs │ │ │ ├── index_map_should_detect_corruption.cs │ │ │ ├── opening_a_ptable_with_more_than_32bits_of_records.cs │ │ │ ├── ptable_midpoint_cache_should.cs │ │ │ ├── ptable_range_query_tests.cs │ │ │ ├── ptable_read_scenario_with_items_spanning_few_cache_segments.cs │ │ │ ├── ptable_read_scenario_with_usual_items.cs │ │ │ ├── ptable_should.cs │ │ │ ├── saving_index_with_single_item_to_a_file.cs │ │ │ ├── saving_index_with_six_items_to_a_file.cs │ │ │ ├── table_index_on_range_query.cs │ │ │ ├── table_index_on_try_get_one_value_query.cs │ │ │ ├── table_index_should.cs │ │ │ ├── table_index_with_corrupt_index_entries_should.cs │ │ │ ├── table_index_with_two_ptables_and_memtable_on_range_query.cs │ │ │ ├── when_a_ptable_header_is_corrupt_on_disk.cs │ │ │ ├── when_a_ptable_is_corrupt_on_disk.cs │ │ │ ├── when_a_ptable_is_loaded_from_disk.cs │ │ │ ├── when_creating_ptable_from_memtable.cs │ │ │ ├── when_merging_four_ptables.cs │ │ │ ├── when_merging_ptables.cs │ │ │ ├── when_merging_ptables_with_entries_to_nonexisting_record.cs │ │ │ ├── when_merging_two_ptables.cs │ │ │ ├── when_trying_to_get_latest_entry.cs │ │ │ └── when_trying_to_get_oldest_entry.cs │ │ ├── IndexV2 │ │ │ ├── opening_a_ptable_with_more_than_32bits_of_records.cs │ │ │ ├── table_index_hash_collision_when_upgrading_to_64bit.cs │ │ │ └── table_index_when_merging_upgrading_to_64bit_if_entry_doesnt_exist_drops_entry_and_carries_on.cs │ │ ├── IndexV3 │ │ │ ├── opening_a_ptable_with_more_than_32bits_of_records.cs │ │ │ └── when_upgrading_index_to_64bit_stream_version.cs │ │ ├── IndexV4 │ │ │ ├── opening_a_ptable_with_more_than_32bits_of_records.cs │ │ │ ├── ptable_midpoint_calculations_should.cs │ │ │ ├── when_merging_ptables_vx_to_v4.cs │ │ │ └── when_merging_ptables_with_entries_to_nonexisting_record.cs │ │ ├── IndexVAny │ │ │ ├── create_index_map_from_non_existing_file.cs │ │ │ ├── saving_empty_index_to_a_file.cs │ │ │ ├── when_opening_ptable_without_right_flag_in_header.cs │ │ │ └── when_opening_v1_indexmap.cs │ │ ├── MemTableTests.cs │ │ ├── ReverseComparerTests.cs │ │ └── Scavenge │ │ │ ├── when_scavenging_a_table_index.cs │ │ │ ├── when_scavenging_a_table_index_and_another_table_is_completed_during.cs │ │ │ ├── when_scavenging_a_table_index_cancelled_while_scavenging_table.cs │ │ │ ├── when_scavenging_a_table_index_cancelled_while_waiting_for_lock.cs │ │ │ ├── when_scavenging_a_table_index_fails.cs │ │ │ ├── when_scavenging_a_v1_index.cs │ │ │ ├── when_scavenging_an_index.cs │ │ │ ├── when_scavenging_an_index_fails.cs │ │ │ ├── when_scavenging_an_index_is_cancelled.cs │ │ │ └── when_scavenging_an_index_removes_nothing.cs │ ├── Infrastructure │ │ ├── IRandTestFinishCondition.cs │ │ ├── IRandTestItemProcessor.cs │ │ ├── RandTestQueueItem.cs │ │ └── RandomTestRunner.cs │ ├── Integration │ │ ├── specification_with_a_single_node.cs │ │ ├── specification_with_cluster.cs │ │ ├── when_a_master_is_shutdown.cs │ │ └── when_a_single_node_is_restarted_multiple_times.cs │ ├── Logging │ │ └── EsLoggerExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── es-tile.png │ ├── Services │ │ ├── ElectionsService │ │ │ ├── ClusterSettings.cs │ │ │ ├── ClusterSettingsFactory.cs │ │ │ ├── ElectionServiceUnit.cs │ │ │ ├── FakeEpochManager.cs │ │ │ ├── LeaderNode │ │ │ │ ├── happy_case_as_leader.cs │ │ │ │ └── paxos_walktrough_as_leader.cs │ │ │ ├── NonLeaderNode │ │ │ │ ├── happy_case_as_nonleader.cs │ │ │ │ └── paxos_walktrough_as_nonleader.cs │ │ │ ├── Randomized │ │ │ │ ├── ElectionParams.cs │ │ │ │ ├── ElectionsInstance.cs │ │ │ │ ├── ElectionsLogger.cs │ │ │ │ ├── ElectionsProgressCondition.cs │ │ │ │ ├── ElectionsSafetyCondition.cs │ │ │ │ ├── GossipUpdateParams.cs │ │ │ │ ├── InnerBusMessagesProcessor.cs │ │ │ │ ├── RandomizedElectionsAndGossipTestCase.cs │ │ │ │ ├── RandomizedElectionsTestCase.cs │ │ │ │ ├── SendOverHttpBlockingProcessor.cs │ │ │ │ ├── SendOverHttpProcessor.cs │ │ │ │ ├── SeqHelpers.cs │ │ │ │ ├── TimerMessageProcessor.cs │ │ │ │ ├── UpdateGossipProcessor.cs │ │ │ │ ├── elections_service_3_nodes_full_gossip_no_http_loss_no_dup.cs │ │ │ │ ├── elections_service_3_nodes_full_gossip_some_http_loss_some_dup.cs │ │ │ │ ├── elections_service_3_nodes_with_1_known_and_changing_for_every_node_correct_removal.cs │ │ │ │ ├── elections_service_3_nodes_with_1_known_and_changing_for_every_node_remove_dead.cs │ │ │ │ ├── elections_service_3_nodes_with_1_known_and_changing_for_every_node_remove_dead_668010149.cs │ │ │ │ ├── elections_service_3_nodes_with_1_known_and_changing_for_every_node_remove_dead_base.cs │ │ │ │ ├── elections_service_3_nodes_with_1_known_and_changing_for_every_node_with_shuffle_stable_last_1000.cs │ │ │ │ ├── elections_service_4_nodes_full_gossip_no_http_loss_no_dup.cs │ │ │ │ ├── elections_service_4_nodes_full_gossip_some_http_loss_some_dup.cs │ │ │ │ ├── elections_service_4_nodes_full_gossip_some_http_loss_some_dup_rndseed_20676840.cs │ │ │ │ ├── elections_service_5_nodes_full_gossip_no_http_loss_no_dup.cs │ │ │ │ ├── elections_service_5_nodes_full_gossip_some_http_loss_some_dup.cs │ │ │ │ ├── elections_service_5_nodes_with_1_known_and_changing_for_every_node_correct_removal.cs │ │ │ │ ├── elections_service_5_nodes_with_1_known_and_changing_for_every_node_remove_dead.cs │ │ │ │ ├── elections_service_5_nodes_with_1_known_and_changing_for_every_node_with_shuffle.cs │ │ │ │ ├── elections_service_5_nodes_with_1_known_when_started_and_set_full_imediately.cs │ │ │ │ └── elections_service_5_nodes_with_1_known_when_started_and_set_to_full_later.cs │ │ │ └── no_quorum_cases.cs │ │ ├── GossipService │ │ │ └── gossip_service_should.cs │ │ ├── Monitoring │ │ │ ├── FormatterTests.cs │ │ │ └── StatsParserTests.cs │ │ ├── PersistentSubscription │ │ │ ├── OutstandingMessageCacheTests.cs │ │ │ ├── PersistentSubscriptionConfigPersistence.cs │ │ │ ├── PersistentSubscriptionTests.cs │ │ │ ├── PinnedConsumerStrategyTests.cs │ │ │ └── StreamBufferTests.cs │ │ ├── Replication │ │ │ ├── CommitReplication │ │ │ │ ├── when_3_node_cluster_receives_1_commit_ack.cs │ │ │ │ ├── when_3_node_cluster_receives_2_commit_acks.cs │ │ │ │ ├── when_3_node_cluster_receives_2_commit_acks_for_positions_lower_than_checkpoint.cs │ │ │ │ ├── when_3_node_cluster_receives_multiple_acks_for_different_positions.cs │ │ │ │ ├── when_3_node_cluster_receives_multiple_acks_for_different_positions_out_of_order.cs │ │ │ │ ├── when_3_node_cluster_receives_multiple_acks_for_same_positions.cs │ │ │ │ ├── when_constructing_index_committer_service.cs │ │ │ │ ├── when_master_node_in_3_node_cluster_with_outstanding_commit_acks_becomes_unknown.cs │ │ │ │ ├── when_single_node_cluster_receives_commit_ack_for_multiple_prepares.cs │ │ │ │ ├── when_single_node_receives_commit_ack.cs │ │ │ │ ├── when_slave_node_in_3_node_cluster_receives_commit_ack.cs │ │ │ │ └── with_index_committer_service.cs │ │ │ ├── DeleteStream │ │ │ │ ├── when_creating_delete_stream_request_manager.cs │ │ │ │ ├── when_delete_stream_completes_successfully.cs │ │ │ │ ├── when_delete_stream_gets_already_committed.cs │ │ │ │ ├── when_delete_stream_gets_commit_timeout_after_commit_replicated.cs │ │ │ │ ├── when_delete_stream_gets_commit_timeout_before_commit_replicated.cs │ │ │ │ ├── when_delete_stream_gets_commit_timeout_before_commit_stage.cs │ │ │ │ ├── when_delete_stream_gets_prepare_timeout_after_prepares.cs │ │ │ │ ├── when_delete_stream_gets_prepare_timeout_before_prepares.cs │ │ │ │ └── when_delete_stream_gets_stream_deleted.cs │ │ │ ├── FakeEnvelope.cs │ │ │ ├── FakeTfChunkLogManager.cs │ │ │ ├── ReadStream │ │ │ │ ├── when_reading_an_event_committed_on_master_and_on_slaves.cs │ │ │ │ ├── when_reading_an_event_from_a_single_node.cs │ │ │ │ └── when_reading_events_from_cluster_with_replication_checkpoint_not_set.cs │ │ │ ├── ReplicationTestHelper.cs │ │ │ ├── RequestManagerSpecification.cs │ │ │ ├── Subscriptions │ │ │ │ ├── TestSubscription.cs │ │ │ │ └── when_subscribed_to_stream_on_master_and_event_is_replicated_to_slaves.cs │ │ │ ├── TransactionCommit │ │ │ │ ├── when_creating_transaction_commit_request_manager.cs │ │ │ │ ├── when_transaction_commit_completes_successfully.cs │ │ │ │ ├── when_transaction_commit_gets_already_committed.cs │ │ │ │ ├── when_transaction_commit_gets_commit_timeout_before_commit_stage.cs │ │ │ │ ├── when_transaction_commit_gets_prepare_timeout_after_prepares.cs │ │ │ │ ├── when_transaction_commit_gets_prepare_timeout_before_prepares.cs │ │ │ │ └── when_transaction_commit_gets_stream_deleted.cs │ │ │ └── WriteStream │ │ │ │ ├── when_creating_write_stream_request_manager.cs │ │ │ │ ├── when_write_stream_completes_successfully.cs │ │ │ │ ├── when_write_stream_gets_already_committed.cs │ │ │ │ ├── when_write_stream_gets_commit_timeout_after_commit_replicated.cs │ │ │ │ ├── when_write_stream_gets_commit_timeout_before_commit_stage.cs │ │ │ │ ├── when_write_stream_gets_prepare_timeout_after_prepares.cs │ │ │ │ ├── when_write_stream_gets_prepare_timeout_before_prepares.cs │ │ │ │ └── when_write_stream_gets_stream_deleted.cs │ │ ├── Storage │ │ │ ├── AllReader │ │ │ │ ├── when_a_single_write_before_the_transaction_is_present.cs │ │ │ │ ├── when_a_single_write_is_after_transaction_end_but_before_commit_is_present.cs │ │ │ │ ├── when_multiple_single_writes_are_after_transaction_end_but_before_commit_is_present.cs │ │ │ │ └── when_reading_all_with_replication_checkpoint_set.cs │ │ │ ├── BuildingIndex │ │ │ │ ├── when_building_an_index_off_tfile_with_duplicate_events_in_a_stream.cs │ │ │ │ ├── when_building_an_index_off_tfile_with_multiple_events_in_a_stream.cs │ │ │ │ ├── when_building_an_index_off_tfile_with_prepares_and_commits.cs │ │ │ │ ├── when_building_an_index_off_tfile_with_prepares_and_commits_for_events_with_version_numbers_greater_than_int_maxvalue.cs │ │ │ │ ├── when_building_an_index_off_tfile_with_prepares_and_commits_for_log_records_of_mixed_versions.cs │ │ │ │ ├── when_building_an_index_off_tfile_with_prepares_but_no_commits.cs │ │ │ │ └── when_building_an_index_off_tfile_with_two_events_in_stream.cs │ │ │ ├── ByLengthHasher.cs │ │ │ ├── CheckCommitStartingAt │ │ │ │ ├── when_writing_few_prepares_and_committing_one.cs │ │ │ │ ├── when_writing_few_prepares_with_same_expected_version_and_committing_one_of_them.cs │ │ │ │ ├── when_writing_few_prepares_with_same_expected_version_and_not_committing_them.cs │ │ │ │ ├── when_writing_prepares_in_wrong_order_and_committing_in_right_order.cs │ │ │ │ └── when_writing_single_prepare.cs │ │ │ ├── DeletingStream │ │ │ │ ├── deleting_stream_tests_1.cs │ │ │ │ ├── deleting_stream_tests_2.cs │ │ │ │ ├── deleting_stream_tests_3.cs │ │ │ │ ├── is_stream_deleted_should.cs │ │ │ │ ├── when_deleting_stream_spanning_through_multiple_chunks_in_db_with_other_streams_read_index_should.cs │ │ │ │ ├── when_deleting_stream_spanning_through_multiple_chunks_read_index_should.cs │ │ │ │ ├── when_deleting_stream_with_1_hash_collision_and_1_stream_with_other_hash_read_index_should.cs │ │ │ │ ├── when_deleting_stream_with_2_hash_collisions_and_mixed_order_read_index_should.cs │ │ │ │ ├── when_deleting_stream_with_version_numbers_greater_than_int_maxvalue.cs │ │ │ │ ├── when_deleting_the_only_existing_stream_in_db_read_index_should.cs │ │ │ │ ├── when_hard_deleting_stream_with_log_version_0.cs │ │ │ │ ├── when_reading_deleted_stream_written_with_old_log_record_version.cs │ │ │ │ ├── when_writing_delete_prepare_but_no_commit_read_index_should.cs │ │ │ │ ├── when_writing_few_prepares_on_same_event_number_and_commiting_delete_on_this_version_read_index_should.cs │ │ │ │ └── with_empty_db_read_index_should.cs │ │ │ ├── FakeInMemoryTFReader.cs │ │ │ ├── FakeInMemoryTableIndex.cs │ │ │ ├── FakeTableIndex.cs │ │ │ ├── HashCollisions │ │ │ │ ├── with_hash_collisions.cs │ │ │ │ ├── with_no_hash_collisions_read_index_should.cs │ │ │ │ ├── with_single_deleted_event_stream_read_index_should.cs │ │ │ │ ├── with_three_collisioned_streams_one_event_each_read_index_should.cs │ │ │ │ ├── with_three_collisioned_streams_one_event_each_with_second_stream_deleted_read_index_should.cs │ │ │ │ ├── with_three_collisioned_streams_with_different_number_of_events_each_read_index_should.cs │ │ │ │ ├── with_three_collisioned_streams_with_different_number_of_events_third_one_deleted_each_read_index_should.cs │ │ │ │ ├── with_two_collisioned_streams_one_event_each_first_stream_deleted_read_index_should.cs │ │ │ │ └── with_two_collisioned_streams_one_event_each_read_index_should.cs │ │ │ ├── Idempotency │ │ │ │ ├── when_writing_a_second_batch_of_events_after_the_first_batch_has_been_replicated.cs │ │ │ │ ├── when_writing_a_second_batch_of_events_after_the_first_batch_has_not_yet_been_replicated.cs │ │ │ │ ├── when_writing_a_second_event_after_the_first_event_has_been_replicated.cs │ │ │ │ └── when_writing_a_second_event_after_the_first_event_has_not_yet_been_replicated.cs │ │ │ ├── MaxAgeMaxCount │ │ │ │ ├── AfterScavenge │ │ │ │ │ ├── when_having_stream_both_maxage_and_maxcount_specified_with_maxage_more_strict.cs │ │ │ │ │ ├── when_having_stream_both_maxage_and_maxcount_specified_with_maxcount_more_strict.cs │ │ │ │ │ ├── when_having_stream_with_maxage_specified.cs │ │ │ │ │ ├── when_having_stream_with_maxcount_specified.cs │ │ │ │ │ └── when_having_stream_with_truncatebefore_specified.cs │ │ │ │ ├── ReadRangeAndNextEventNumber │ │ │ │ │ ├── when_reading_stream_with_max_age.cs │ │ │ │ │ ├── when_reading_stream_with_max_age_and_max_count_and_max_age_is_more_strict.cs │ │ │ │ │ ├── when_reading_stream_with_max_age_and_max_count_and_max_count_is_more_strict.cs │ │ │ │ │ ├── when_reading_stream_with_max_count.cs │ │ │ │ │ ├── when_reading_stream_with_no_max_age_max_count.cs │ │ │ │ │ └── when_reading_stream_with_start_from.cs │ │ │ │ ├── when_having_one_stream_with_maxage_and_other_stream_with_maxcount_and_streams_have_same_hash.cs │ │ │ │ ├── when_having_stream_both_maxage_and_maxcount_specified_with_maxage_more_strict.cs │ │ │ │ ├── when_having_stream_both_maxage_and_maxcount_specified_with_maxcount_more_strict.cs │ │ │ │ ├── when_having_stream_with_maxage_specified.cs │ │ │ │ ├── when_having_stream_with_maxcount_specified.cs │ │ │ │ ├── when_having_stream_with_maxcount_specified_and_long_transactions_written.cs │ │ │ │ ├── when_having_stream_with_truncatebefore_specified.cs │ │ │ │ ├── with_big_max_age.cs │ │ │ │ ├── with_big_max_count.cs │ │ │ │ ├── with_big_start_from.cs │ │ │ │ ├── with_invalid_max_age_and_normal_max_count.cs │ │ │ │ ├── with_invalid_max_count_and_normal_max_age.cs │ │ │ │ ├── with_invalid_metadata.cs │ │ │ │ ├── with_too_big_max_age.cs │ │ │ │ ├── with_too_big_max_age_and_normal_max_count.cs │ │ │ │ ├── with_too_big_max_count.cs │ │ │ │ ├── with_too_big_max_count_and_normal_max_age.cs │ │ │ │ ├── with_too_big_start_from.cs │ │ │ │ └── with_truncatebefore_greater_than_int_maxvalue.cs │ │ │ ├── Metastreams │ │ │ │ ├── when_having_deleted_stream_and_no_metastream_metastream_is_declared_deleted_as_well.cs │ │ │ │ ├── when_having_deleted_stream_its_metastream_is_deleted_as_well.cs │ │ │ │ ├── when_having_multiple_metaevents_in_metastream_and_read_index_is_set_to_keep_just_last.cs │ │ │ │ └── when_having_multiple_metaevents_in_metastream_and_read_index_is_set_to_keep_last_2.cs │ │ │ ├── ReadIndexTestScenario.cs │ │ │ ├── RepeatableDbTestScenario.cs │ │ │ ├── Scavenge │ │ │ │ ├── when_deleting_duplicate_events.cs │ │ │ │ ├── when_deleting_single_stream_spanning_through_2_chunks_in_2nd_chunk__in_db_with_3_chunks.cs │ │ │ │ ├── when_deleting_single_stream_spanning_through_2_chunks_in_db_with_2_chunks.cs │ │ │ │ ├── when_deleting_single_stream_spanning_through_2_chunks_in_db_with_3_chunks.cs │ │ │ │ ├── when_having_commit_spanning_multiple_chunks.cs │ │ │ │ ├── when_running_a_scavenge_from_storage_scavenger.cs │ │ │ │ ├── when_scavenging_tfchunk_with_version0_log_records.cs │ │ │ │ ├── when_scavenging_tfchunk_with_version0_log_records_and_deleted_records.cs │ │ │ │ ├── when_scavenging_tfchunk_with_version0_log_records_using_transactions.cs │ │ │ │ ├── when_stream_is_softdeleted_and_temp_and_all_events_and_metaevents_are_in_one_chunk.cs │ │ │ │ ├── when_stream_is_softdeleted_and_temp_but_some_events_are_in_multiple_chunks.cs │ │ │ │ ├── when_stream_is_softdeleted_and_temp_but_some_metaevents_are_in_multiple_chunks.cs │ │ │ │ ├── when_stream_is_softdeleted_and_temp_with_log_version_0_but_some_events_are_in_multiple_chunks.cs │ │ │ │ ├── when_stream_is_softdeleted_with_log_record_version_0.cs │ │ │ │ ├── when_stream_is_softdeleted_with_mixed_log_record_version_0_and_version_1.cs │ │ │ │ └── when_writing_delete_prepare_without_commit_on_stream_spanning_through_2_chunks_in_db_with_2_chunks.cs │ │ │ ├── SimpleDbTestScenario.cs │ │ │ ├── Transactions │ │ │ │ ├── when_having_multievent_sequential_write_request_read_index_should.cs │ │ │ │ ├── when_having_two_intermingled_transactions_and_some_uncommited_prepares_in_the_end_read_index_should.cs │ │ │ │ ├── when_having_two_intermingled_transactions_and_some_uncommited_prepares_spanning_few_chunks_read_index_should.cs │ │ │ │ ├── when_having_two_intermingled_transactions_read_index_should.cs │ │ │ │ ├── when_having_two_intermingled_transactions_spanning_few_chunks_read_index_should.cs │ │ │ │ └── when_rebuilding_index_for_partially_persisted_transaction.cs │ │ │ ├── WriteEventsToIndexScenario.cs │ │ │ └── when_caching_read_items.cs │ │ ├── TimeService │ │ │ └── time_service_should.cs │ │ ├── Transport │ │ │ ├── Http │ │ │ │ ├── Authentication │ │ │ │ │ ├── basic_http_authentication_provider.cs │ │ │ │ │ └── rfc_2898_password_hash_algorithm.cs │ │ │ │ ├── Authorization │ │ │ │ │ └── authorization_tests.cs │ │ │ │ ├── HttpBootstrap.cs │ │ │ │ ├── PortableServer.cs │ │ │ │ ├── atom_specs.cs │ │ │ │ ├── auto_convertion.cs │ │ │ │ ├── build_requested_url_should.cs │ │ │ │ ├── compress_response_should.cs │ │ │ │ ├── http_service_should.cs │ │ │ │ ├── media_type.cs │ │ │ │ ├── ping_controller_should.cs │ │ │ │ ├── speed_test.cs │ │ │ │ ├── uri_router_should.cs │ │ │ │ └── when_getting_tcp_stats_from_stat_controller.cs │ │ │ └── Tcp │ │ │ │ ├── TcpClientDispatcherTests.cs │ │ │ │ ├── TcpConnectionManagerTests.cs │ │ │ │ ├── Utils.cs │ │ │ │ ├── core_tcp_package.cs │ │ │ │ └── ssl_connection.cs │ │ ├── UserManagementService │ │ │ ├── password_change_notification_reader.cs │ │ │ └── user_management_service.cs │ │ └── VNode │ │ │ └── vnode_fsm_should.cs │ ├── SpecificationWithDirectory.cs │ ├── SpecificationWithDirectoryPerTestFixture.cs │ ├── SpecificationWithFile.cs │ ├── SpecificationWithFilePerTestFixture.cs │ ├── TestConfigs │ │ ├── invalid_format_config.yaml │ │ ├── test_config.yaml │ │ ├── test_config_with_incorrectly_cased_option.yaml │ │ └── test_config_with_unknown_option.yaml │ ├── TestsInitFixture.cs │ ├── TransactionLog │ │ ├── FakeReadIndex.cs │ │ ├── FlushTimeMeter.cs │ │ ├── Optimization │ │ │ └── tfchunkreader_existsat_optimizer_should.cs │ │ ├── Scavenging │ │ │ ├── Helpers │ │ │ │ ├── FakeTFScavengerLog.cs │ │ │ │ ├── ScavengeLifeCycleScenario.cs │ │ │ │ ├── ScavengeTestScenario.cs │ │ │ │ └── TFChunkDbCreationHelper.cs │ │ │ ├── scavenged_chunk.cs │ │ │ ├── when_deleted_stream_with_a_lot_of_data_is_scavenged.cs │ │ │ ├── when_deleted_stream_with_explicit_transaction_is_scavenged.cs │ │ │ ├── when_deleted_stream_with_metadata_is_scavenged.cs │ │ │ ├── when_having_nothing_to_scavenge.cs │ │ │ ├── when_having_stream_with_both_max_age_and_max_count_with_stricted_max_age_specified.cs │ │ │ ├── when_having_stream_with_both_max_age_and_max_count_with_stricted_max_count_specified.cs │ │ │ ├── when_having_stream_with_max_age_specified.cs │ │ │ ├── when_having_stream_with_max_count_specified.cs │ │ │ ├── when_having_stream_with_start_from_specified.cs │ │ │ ├── when_having_stream_with_strict_max_age_leaving_no_events_in_stream.cs │ │ │ ├── when_metastream_is_scavenged_and_read_index_is_set_to_keep_just_last_metaevent.cs │ │ │ ├── when_metastream_is_scavenged_and_read_index_is_set_to_keep_last_3_metaevents.cs │ │ │ ├── when_scavenge_cancelled_after_chunck_scavenged.cs │ │ │ ├── when_scavenge_cancelled_after_completed.cs │ │ │ ├── when_scavenge_cancelled_after_started.cs │ │ │ ├── when_scavenge_cancelled_before_started.cs │ │ │ ├── when_scavenge_from_chunk_number.cs │ │ │ ├── when_scavenge_succeeds_without_error.cs │ │ │ ├── when_scavenge_throws_exception_on_completed.cs │ │ │ ├── when_scavenge_throws_exception_processing_chunk.cs │ │ │ ├── when_stream_is_deleted.cs │ │ │ ├── when_stream_is_deleted_and_bulk_transaction_spans_chunks_boundary.cs │ │ │ └── when_stream_is_deleted_and_explicit_transaction_spans_chunks_boundary.cs │ │ ├── TFChunkHelper.cs │ │ ├── Truncation │ │ │ ├── TruncateAndReOpenDbScenario.cs │ │ │ ├── TruncateScenario.cs │ │ │ ├── when_truncating_database.cs │ │ │ ├── when_truncating_few_chunks_with_index_on_disk.cs │ │ │ ├── when_truncating_few_chunks_with_index_on_disk_and_then_reopening_db.cs │ │ │ ├── when_truncating_into_the_middle_of_completed_chunk.cs │ │ │ ├── when_truncating_into_the_middle_of_multichunk.cs │ │ │ ├── when_truncating_into_the_middle_of_ongoing_chunk.cs │ │ │ ├── when_truncating_into_the_middle_of_scavenged_chunk_with_index_in_memory.cs │ │ │ ├── when_truncating_into_the_middle_of_scavenged_chunk_with_index_in_memory_and_then_reopening_db.cs │ │ │ ├── when_truncating_right_at_the_end_of_multichunk.cs │ │ │ ├── when_truncating_single_uncompleted_chunk_with_index_in_memory_and_then_reopening_db.cs │ │ │ ├── when_truncating_single_uncompleted_chunk_with_index_on_disk.cs │ │ │ └── when_truncating_to_the_very_beginning_of_db.cs │ │ ├── Unbuffered │ │ │ └── UnbufferedTests.cs │ │ ├── Validation │ │ │ ├── TFChunkDbCreationTestBase.cs │ │ │ ├── when_validating_tfchunk_db.cs │ │ │ ├── when_validating_tfchunk_db_with_multi_chunks.cs │ │ │ └── when_validating_tfchunkdb_without_previous_files.cs │ │ ├── commit_log_record_should.cs │ │ ├── prepare_log_record_should.cs │ │ ├── versioned_pattern_filenaming_strategy.cs │ │ ├── when_appending_past_end_of_a_tfchunk.cs │ │ ├── when_appending_to_a_tfchunk_and_flushing.cs │ │ ├── when_appending_to_a_tfchunk_without_flush.cs │ │ ├── when_chasing_a_chunked_transaction_log.cs │ │ ├── when_creating_chunked_transaction_chaser.cs │ │ ├── when_creating_chunked_transaction_file_database.cs │ │ ├── when_creating_chunked_transaction_file_reader.cs │ │ ├── when_creating_chunked_transaction_file_writer.cs │ │ ├── when_creating_tfchunk_from_empty_file.cs │ │ ├── when_destroying_a_tfchunk.cs │ │ ├── when_destroying_a_tfchunk_that_is_locked.cs │ │ ├── when_having_scavenged_tfchunk_with_all_records_removed.cs │ │ ├── when_marking_for_deletion_a_tfchunk_that_has_been_locked_and_unlocked.cs │ │ ├── when_opening_chunked_transaction_file_db_without_previous_files.cs │ │ ├── when_opening_existing_tfchunk.cs │ │ ├── when_opening_tfchunk_from_non_existing_file.cs │ │ ├── when_reading_a_single_record.cs │ │ ├── when_reading_an_empty_chunked_transaction_log.cs │ │ ├── when_reading_cached_empty_scavenged_tfchunk.cs │ │ ├── when_reading_from_a_cached_tfchunk.cs │ │ ├── when_reading_logical_bytes_bulk_from_a_chunk.cs │ │ ├── when_reading_physical_bytes_bulk_from_a_chunk.cs │ │ ├── when_reading_uncached_empty_scavenged_tfchunk.cs │ │ ├── when_sequentially_reading_db_with_few_chunks.cs │ │ ├── when_sequentially_reading_db_with_one_chunk.cs │ │ ├── when_sequentially_reading_db_with_one_chunk_ending_with_prepare.cs │ │ ├── when_uncaching_a_tfchunk.cs │ │ ├── when_unlocking_a_tfchunk_that_has_been_marked_for_deletion.cs │ │ ├── when_writing_a_file_checkpoint_to_a_writethroughfile.cs │ │ ├── when_writing_a_file_checksum_to_a_file.cs │ │ ├── when_writing_a_memorymappedpoint_to_a_file.cs │ │ ├── when_writing_a_new_chunked_transaction_file.cs │ │ ├── when_writing_an_existing_chunked_transaction_file_with_checksum.cs │ │ ├── when_writing_an_existing_chunked_transaction_file_with_checksum_and_data_bigger_than_buffer.cs │ │ ├── when_writing_an_existing_chunked_transaction_file_with_not_enough_space_in_chunk.cs │ │ ├── when_writing_commit_record_to_file.cs │ │ ├── when_writing_multiple_records_to_a_tfchunk.cs │ │ └── when_writing_prepare_record_to_file.cs │ ├── VerifyIntPtrSize.cs │ ├── copying_metadata.cs │ ├── mono_filestream_bug.cs │ ├── run.cmd │ └── server.p12 ├── EventStore.Core │ ├── Authentication │ │ ├── AuthenticationRequest.cs │ │ ├── IAuthenticationProvider.cs │ │ ├── IAuthenticationProviderFactory.cs │ │ ├── InternalAuthenticationProvider.cs │ │ ├── InternalAuthenticationProviderFactory.cs │ │ ├── OpenGenericPrincipal.cs │ │ └── PasswordHashAlgorithm.cs │ ├── Bus │ │ ├── AdHocHandler.cs │ │ ├── HandleExtensions.cs │ │ ├── IBus.cs │ │ ├── IHandle.cs │ │ ├── IMonitoredQueue.cs │ │ ├── IPublisher.cs │ │ ├── IQueuedHandler.cs │ │ ├── ISingleConsumerMessageQueue.cs │ │ ├── ISubscriber.cs │ │ ├── InMemoryBus.cs │ │ ├── MPSCMessageQueue.cs │ │ ├── MessageHandler.cs │ │ ├── MultiQueuedHandler.cs │ │ ├── NarrowingHandler.cs │ │ ├── QueueBatchDequeueResult.cs │ │ ├── QueueMonitor.cs │ │ ├── QueueStatsCollector.cs │ │ ├── QueuedHandler.cs │ │ ├── QueuedHandlerAutoReset.cs │ │ ├── QueuedHandlerAutoResetWithMPSC.cs │ │ ├── QueuedHandlerMRES.cs │ │ ├── QueuedHandlerMRESWithMPSC.cs │ │ ├── QueuedHandlerPulse.cs │ │ ├── QueuedHandlerSleep.cs │ │ ├── QueuedHandlerThreadPool.cs │ │ ├── SPSCMessageQueue.cs │ │ └── WideningHandler.cs │ ├── Cluster │ │ ├── ClusterInfo.cs │ │ ├── MemberInfo.cs │ │ ├── Settings │ │ │ ├── ClusterConsts.cs │ │ │ ├── ClusterVNodeAuthenticationType.cs │ │ │ └── ClusterVNodeSettings.cs │ │ └── VNodeInfo.cs │ ├── ClusterNodeMutex.cs │ ├── ClusterVNode.cs │ ├── Consts.cs │ ├── Data │ │ ├── CommitEventRecord.cs │ │ ├── Epoch.cs │ │ ├── Event.cs │ │ ├── EventNumber.cs │ │ ├── EventRecord.cs │ │ ├── ExpectedVersion.cs │ │ ├── GossipAdvertiseInfo.cs │ │ ├── LowerUpper.cs │ │ ├── ReadAllResult.cs │ │ ├── ReadEventResult.cs │ │ ├── ReadStreamResult.cs │ │ ├── ResolvedEvent.cs │ │ ├── StreamAcl.cs │ │ ├── StreamMetadata.cs │ │ ├── SystemSettings.cs │ │ ├── TFPos.cs │ │ ├── UserData.cs │ │ ├── VNodeInfo.cs │ │ └── VNodeState.cs │ ├── DataStructures │ │ ├── BloomFilter.cs │ │ ├── BoundedQueue.cs │ │ ├── ILRUCache.cs │ │ ├── LRUCache.cs │ │ ├── NoLRUCache.cs │ │ ├── ObjectPool.cs │ │ ├── PairingHeap.cs │ │ └── StickyLRUCache.cs │ ├── EventStore.Core.csproj │ ├── Exceptions │ │ ├── BadChunkInDatabaseException.cs │ │ ├── ChunkNotFoundException.cs │ │ ├── CorruptDatabaseException.cs │ │ ├── CorruptIndexException.cs │ │ ├── ExtraneousFileFoundException.cs │ │ ├── FileBeingDeletedException.cs │ │ ├── HashValidationException.cs │ │ ├── InvalidFileException.cs │ │ ├── MaybeCorruptIndexException.cs │ │ ├── PTableNotFoundException.cs │ │ ├── PossibleToHandleOutOfMemoryException.cs │ │ ├── ReaderCheckpointHigherThanWriterException.cs │ │ ├── SystemStreamNotFoundException.cs │ │ ├── UnableToAcquireLockInReasonableTimeException.cs │ │ ├── UnableToReadPastEndOfStreamException.cs │ │ └── WrongFileVersionException.cs │ ├── ExclusiveDbLock.cs │ ├── Helpers │ │ ├── IODispatcher.cs │ │ ├── IODispatcherAsync.cs │ │ ├── IODispatcherDelayedMessage.cs │ │ ├── LengthPrefixSuffixFramer.cs │ │ └── StreamVersionConverter.cs │ ├── ISubsystem.cs │ ├── Index │ │ ├── GuidFilenameProvider.cs │ │ ├── HashListMemTable.cs │ │ ├── Hashes │ │ │ ├── IHasher.cs │ │ │ ├── Murmur2Unsafe.cs │ │ │ ├── Murmur3AUnsafe.cs │ │ │ └── XXHashUnsafe.cs │ │ ├── IIndexFilenameProvider.cs │ │ ├── IIndexScavengerLog.cs │ │ ├── IMemTable.cs │ │ ├── ISearchTable.cs │ │ ├── ITableIndex.cs │ │ ├── IndexEntry.cs │ │ ├── IndexEntryV1.cs │ │ ├── IndexEntryV2.cs │ │ ├── IndexKey.cs │ │ ├── IndexMap.cs │ │ ├── MergeResult.cs │ │ ├── PTable.cs │ │ ├── PTableConstruction.cs │ │ ├── PTableFooter.cs │ │ ├── PTableHeader.cs │ │ ├── ScavengeResult.cs │ │ ├── SortedListExtensions.cs │ │ └── TableIndex.cs │ ├── Internal │ │ ├── LoggingExtensions.Debug.cs │ │ ├── LoggingExtensions.Error.cs │ │ ├── LoggingExtensions.Information.cs │ │ ├── LoggingExtensions.Trace.cs │ │ ├── LoggingExtensions.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ ├── Messages │ │ ├── ClientMessage.cs │ │ ├── ClusterInfoDto.cs │ │ ├── ElectionMessage.cs │ │ ├── ElectionMessageDtos.cs │ │ ├── GossipMessage.cs │ │ ├── HttpClientMessageDto.cs │ │ ├── HttpMessage.cs │ │ ├── IQueueAffineMessage.cs │ │ ├── InternalAuthenticationProviderMessages.cs │ │ ├── MemberInfoDto.cs │ │ ├── MergeIndexesResultDto.cs │ │ ├── MonitoringMessage.cs │ │ ├── ReplicationMessage.cs │ │ ├── ReplicationMessageDto.cs │ │ ├── ScavengeResultDto.cs │ │ ├── StorageMessage.cs │ │ ├── SubscriptionMessage.cs │ │ ├── SystemMessage.cs │ │ ├── TcpClientMessageDtoExtensions.cs │ │ ├── TcpMessage.cs │ │ └── UserManagementMessage.cs │ ├── Messaging │ │ ├── CallbackEnvelope.cs │ │ ├── Forwarder.cs │ │ ├── IEnvelope.cs │ │ ├── Message.cs │ │ ├── NoopEnvelope.cs │ │ ├── PublishEnvelope.cs │ │ ├── RequestResponseDispatcher.cs │ │ └── SendToThisEnvelope.cs │ ├── NodeSubsystems.cs │ ├── PluginModel │ │ ├── IAuthenticationPlugin.cs │ │ └── IPersistentSubscriptionConsumerStrategyPlugin.cs │ ├── ProgramBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ ├── AwakeReaderService │ │ │ ├── AwakeService.cs │ │ │ └── AwakeServiceMessage.cs │ │ ├── ClusterStorageWriterService.cs │ │ ├── ElectionsService.cs │ │ ├── Gossip │ │ │ ├── DnsGossipSeedSource.cs │ │ │ ├── GossipServiceBase.cs │ │ │ ├── GossipState.cs │ │ │ ├── IGossipSeedSource.cs │ │ │ ├── LoopbackDns.cs │ │ │ └── NodeGossipService.cs │ │ ├── Histograms │ │ │ └── HistogramService.cs │ │ ├── HttpSendService.cs │ │ ├── Monitoring │ │ │ ├── MonitoringService.cs │ │ │ ├── Stats │ │ │ │ ├── DiskIo.cs │ │ │ │ ├── EsDriveInfo.cs │ │ │ │ ├── GcStats.cs │ │ │ │ ├── QueueStats.cs │ │ │ │ ├── StatMetadata.cs │ │ │ │ └── StatsContainer.cs │ │ │ ├── StatsCollectorEnvelope.cs │ │ │ ├── SystemStatsHelper.cs │ │ │ └── Utils │ │ │ │ ├── PerfCounterHelper.cs │ │ │ │ ├── ProcessUtil.cs │ │ │ │ └── StatsCsvEncoder.cs │ │ ├── PersistentSubscription │ │ │ ├── ConsumerStrategy │ │ │ │ ├── ConsumerPushResult.cs │ │ │ │ ├── DelegatePersistentSubscriptionConsumerStrategyFactory.cs │ │ │ │ ├── DispatchToSinglePersistentSubscriptionConsumerStrategy.cs │ │ │ │ ├── IPersistentSubscriptionConsumerStrategy.cs │ │ │ │ ├── IPersistentSubscriptionConsumerStrategyFactory.cs │ │ │ │ ├── PersistentSubscriptionConsumerStrategyRegistry.cs │ │ │ │ ├── PinnedPersistentSubscriptionConsumerStrategy.cs │ │ │ │ ├── PinnedState │ │ │ │ │ ├── BucketAssignment.cs │ │ │ │ │ ├── Node.cs │ │ │ │ │ └── PinnedConsumerState.cs │ │ │ │ └── RoundRobinPersistentSubscriptionConsumerStrategy.cs │ │ │ ├── IPersistentSubscriptionCheckpointReader.cs │ │ │ ├── IPersistentSubscriptionCheckpointWriter.cs │ │ │ ├── IPersistentSubscriptionMessageParker.cs │ │ │ ├── IPersistentSubscriptionStreamReader.cs │ │ │ ├── NakAction.cs │ │ │ ├── OutstandingMessage.cs │ │ │ ├── OutstandingMessageCache.cs │ │ │ ├── PersistentSubscription.cs │ │ │ ├── PersistentSubscriptionCheckpointReader.cs │ │ │ ├── PersistentSubscriptionCheckpointWriter.cs │ │ │ ├── PersistentSubscriptionClient.cs │ │ │ ├── PersistentSubscriptionClientCollection.cs │ │ │ ├── PersistentSubscriptionConfig.cs │ │ │ ├── PersistentSubscriptionMessageParker.cs │ │ │ ├── PersistentSubscriptionParams.cs │ │ │ ├── PersistentSubscriptionParamsBuilder.cs │ │ │ ├── PersistentSubscriptionService.cs │ │ │ ├── PersistentSubscriptionState.cs │ │ │ ├── PersistentSubscriptionStats.cs │ │ │ ├── PersistentSubscriptionStreamReader.cs │ │ │ ├── RequestStatistics.cs │ │ │ ├── RetryableMessage.cs │ │ │ ├── SequencedEvent.cs │ │ │ └── StreamBuffer.cs │ │ ├── Replication │ │ │ ├── MasterReplicationService.cs │ │ │ └── ReplicaService.cs │ │ ├── RequestForwardingService.cs │ │ ├── RequestManager │ │ │ ├── Managers │ │ │ │ ├── DeleteStreamTwoPhaseRequestManager.cs │ │ │ │ ├── SingleAckRequestManager.cs │ │ │ │ ├── TransactionCommitTwoPhaseRequestManager.cs │ │ │ │ ├── TwoPhaseRequestManagerBase.cs │ │ │ │ └── WriteStreamTwoPhaseRequestManager.cs │ │ │ └── RequestManagementService.cs │ │ ├── Storage │ │ │ ├── EpochManager │ │ │ │ ├── EpochManager.cs │ │ │ │ └── IEpochManager.cs │ │ │ ├── IndexCommitterService.cs │ │ │ ├── ReaderIndex │ │ │ │ ├── AllReader.cs │ │ │ │ ├── BoundedCache.cs │ │ │ │ ├── CommitCheckResult.cs │ │ │ │ ├── CommitDecision.cs │ │ │ │ ├── DictionaryBasedCache.cs │ │ │ │ ├── IReadIndex.cs │ │ │ │ ├── IndexBackend.cs │ │ │ │ ├── IndexCommitter.cs │ │ │ │ ├── IndexReadAllResult.cs │ │ │ │ ├── IndexReadEventResult.cs │ │ │ │ ├── IndexReadStreamResult.cs │ │ │ │ ├── IndexReader.cs │ │ │ │ ├── IndexWriter.cs │ │ │ │ ├── ReadCacheStats.cs │ │ │ │ ├── ReadIndex.cs │ │ │ │ ├── ReadIndexStats.cs │ │ │ │ ├── ReadStreamResult.cs │ │ │ │ ├── StreamAccess.cs │ │ │ │ ├── StreamAccessType.cs │ │ │ │ └── TransactionInfo.cs │ │ │ ├── StorageChaser.cs │ │ │ ├── StorageReaderService.cs │ │ │ ├── StorageReaderWorker.cs │ │ │ ├── StorageScavenger.cs │ │ │ └── StorageWriterService.cs │ │ ├── SubscriptionsService.cs │ │ ├── SystemNames.cs │ │ ├── TcpSendService.cs │ │ ├── TimerService │ │ │ ├── IScheduler.cs │ │ │ ├── ITimeProvider.cs │ │ │ ├── ITimer.cs │ │ │ ├── RealTimeProvider.cs │ │ │ ├── RealTimer.cs │ │ │ ├── ThreadBasedScheduler.cs │ │ │ ├── TimerBasedScheduler.cs │ │ │ ├── TimerMessage.cs │ │ │ └── TimerService.cs │ │ ├── Transport │ │ │ ├── Http │ │ │ │ ├── AuthenticatedHttpRequestProcessor.cs │ │ │ │ ├── Authentication │ │ │ │ │ ├── AnonymousHttpAuthenticationProvider.cs │ │ │ │ │ ├── BasicHttpAuthenticationProvider.cs │ │ │ │ │ ├── HttpAuthenticationProvider.cs │ │ │ │ │ ├── PasswordChangeNotificationReader.cs │ │ │ │ │ ├── Rfc2898PasswordHashAlgorithm.cs │ │ │ │ │ └── TrustedHttpAuthenticationProvider.cs │ │ │ │ ├── AuthorizationLevel.cs │ │ │ │ ├── AutoEventConverter.cs │ │ │ │ ├── Configure.cs │ │ │ │ ├── ControllerAction.cs │ │ │ │ ├── Controllers │ │ │ │ │ ├── AdminController.cs │ │ │ │ │ ├── AtomController.cs │ │ │ │ │ ├── ClusterWebUIController.cs │ │ │ │ │ ├── CommunicationController.cs │ │ │ │ │ ├── ElectController.cs │ │ │ │ │ ├── GossipController.cs │ │ │ │ │ ├── HistogramController.cs │ │ │ │ │ ├── HttpHelpers.cs │ │ │ │ │ ├── InfoController.cs │ │ │ │ │ ├── PersistentSubscriptionController.cs │ │ │ │ │ ├── PingController.cs │ │ │ │ │ ├── RelLink.cs │ │ │ │ │ ├── StatController.cs │ │ │ │ │ └── UsersController.cs │ │ │ │ ├── Convert.cs │ │ │ │ ├── Format.cs │ │ │ │ ├── HttpMessagePipe.cs │ │ │ │ ├── HttpService.cs │ │ │ │ ├── IHttpService.cs │ │ │ │ ├── IncomingHttpRequestAuthenticationManager.cs │ │ │ │ ├── Messages │ │ │ │ │ ├── AuthenticatedHttpRequestMessage.cs │ │ │ │ │ └── IncomingHttpRequestMessage.cs │ │ │ │ ├── RequestParams.cs │ │ │ │ ├── ResponseConfiguration.cs │ │ │ │ ├── SendToHttpEnvelope.cs │ │ │ │ ├── SendToHttpWithConversionEnvelope.cs │ │ │ │ ├── ServiceAccessibility.cs │ │ │ │ ├── UriRouters.cs │ │ │ │ └── UriToActionMatch.cs │ │ │ └── Tcp │ │ │ │ ├── ClientTcpDispatcher.cs │ │ │ │ ├── ITcpDispatcher.cs │ │ │ │ ├── InternalTcpDispatcher.cs │ │ │ │ ├── MessagePackExtensions.cs │ │ │ │ ├── SendOverTcpEnvelope.cs │ │ │ │ ├── TcpConnectionManager.cs │ │ │ │ ├── TcpDispatcher.cs │ │ │ │ ├── TcpService.cs │ │ │ │ └── UnableToAcquireStreamException.cs │ │ ├── UserManagement │ │ │ ├── AllUsersReader.cs │ │ │ ├── SystemAccount.cs │ │ │ └── UserManagementService.cs │ │ └── VNode │ │ │ ├── ClusterVNodeController.cs │ │ │ ├── MessageForwardingProxy.cs │ │ │ ├── VNodeFSM.cs │ │ │ ├── VNodeFSMBuilder.cs │ │ │ ├── VNodeFSMHandling.cs │ │ │ └── VNodeFSMStatesDefinition.cs │ ├── Settings │ │ ├── ESConsts.cs │ │ └── VNodeSettings.cs │ ├── StandardComponents.cs │ ├── TransactionLog │ │ ├── Checkpoint │ │ │ ├── Checkpoint.cs │ │ │ ├── FileCheckpoint.cs │ │ │ ├── ICheckpoint.cs │ │ │ ├── InMemoryCheckpoint.cs │ │ │ ├── MemoryMappedFileCheckpoint.cs │ │ │ └── WriteThroughFileCheckpoint.cs │ │ ├── Chunks │ │ │ ├── ChunkFooter.cs │ │ │ ├── ChunkHeader.cs │ │ │ ├── ITFChunkScavengerLog.cs │ │ │ ├── ITFChunkScavengerLogManager.cs │ │ │ ├── TFChunk │ │ │ │ ├── BulkReadResult.cs │ │ │ │ ├── PosMap.cs │ │ │ │ ├── ReaderWorkItem.cs │ │ │ │ ├── TFChunk.cs │ │ │ │ ├── TFChunkReadSide.cs │ │ │ │ └── WriterWorkItem.cs │ │ │ ├── TFChunkBulkReader.cs │ │ │ ├── TFChunkChaser.cs │ │ │ ├── TFChunkDb.cs │ │ │ ├── TFChunkDbConfig.cs │ │ │ ├── TFChunkDbTruncator.cs │ │ │ ├── TFChunkManager.cs │ │ │ ├── TFChunkReader.cs │ │ │ ├── TFChunkReaderExistsAtOptimizer.cs │ │ │ ├── TFChunkScavenger.cs │ │ │ ├── TFChunkScavengerLog.cs │ │ │ ├── TFChunkScavengerLogManager.cs │ │ │ ├── TFChunkWriter.cs │ │ │ └── TFConsts.cs │ │ ├── FileNamingStrategy │ │ │ ├── IFileNamingStrategy.cs │ │ │ └── VersionedPatternFileNamingStrategy.cs │ │ ├── ITransactionFileChaser.cs │ │ ├── ITransactionFileReader.cs │ │ ├── ITransactionFileWriter.cs │ │ ├── LogRecords │ │ │ ├── CommitLogRecord.cs │ │ │ ├── EpochRecord.cs │ │ │ ├── LogRecord.cs │ │ │ ├── PrepareLogRecord.cs │ │ │ └── SystemLogRecord.cs │ │ ├── ReadResults.cs │ │ ├── RecordWriteResult.cs │ │ └── Unbuffered │ │ │ └── UnbufferedFileStream.cs │ ├── Util │ │ ├── DefaultFiles.cs │ │ ├── FileUtil.cs │ │ ├── MD5Hash.cs │ │ ├── MiniWeb.cs │ │ ├── Opts.DotNetty.cs │ │ ├── Opts.cs │ │ └── ThreadPoolScheduler.cs │ ├── VNodeBuilder.DotNetty.cs │ ├── VNodeBuilder.cs │ └── VNodeStatusChangeArgs.cs ├── EventStore.Native │ ├── EventStore.Native.csproj │ ├── Internal │ │ ├── LoggingExtensions.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ └── TransactionLog │ │ └── Unbuffered │ │ ├── ExtendedFileOptions.cs │ │ ├── INativeFile.cs │ │ ├── MacCaching.cs │ │ ├── NativeFileUnix.cs │ │ ├── NativeFileWindows.cs │ │ └── WinNative.cs ├── EventStore.Projections.Core.Tests │ ├── CallbackSubscriber.cs │ ├── ClientAPI │ │ ├── Cluster │ │ │ └── specification_with_standard_projections_runnning.cs │ │ ├── event_by_type_index.cs │ │ ├── event_by_type_index │ │ │ └── when_reverting_after_index_catches_up.cs │ │ ├── list_projections.cs │ │ ├── projectionsManager │ │ │ ├── ProjectionsManagerTestSuiteMarkerBase.cs │ │ │ ├── SpecificationWithNodeAndProjectionsManager.cs │ │ │ └── projectionsManagerTests.cs │ │ ├── specification_with_standard_projections_runnning.cs │ │ ├── when_executing_query │ │ │ └── with_long_from_all_query │ │ │ │ ├── when_getting_result.cs │ │ │ │ └── when_getting_result_and_timeout_exceeded.cs │ │ ├── when_handling_created │ │ │ ├── with_from_all_any_foreach_projection │ │ │ │ └── when_running_and_events_are_posted.cs │ │ │ ├── with_from_all_foreach_projection │ │ │ │ └── when_running_and_events_are_indexed.cs │ │ │ └── with_from_category_foreach_projection │ │ │ │ └── when_running_and_events_are_indexed.cs │ │ ├── when_handling_deleted │ │ │ ├── with_from_all_any_foreach_projection │ │ │ │ ├── recovery │ │ │ │ │ ├── when_running_and_a_stream_gets_deleted_before_recovery.cs │ │ │ │ │ └── when_running_and_events_are_posted.cs │ │ │ │ ├── when_running_and_events_are_posted.cs │ │ │ │ ├── when_running_and_events_are_posted_but_a_stream_and_tombstone_postponed.cs │ │ │ │ ├── when_running_and_events_are_posted_but_tombstone.cs │ │ │ │ ├── when_running_and_events_are_posted_including_tombstone.cs │ │ │ │ └── when_running_and_then_other_events_tombstone_ant_other_events.cs │ │ │ ├── with_from_all_foreach_projection │ │ │ │ ├── recovery │ │ │ │ │ ├── when_running_and_events_are_indexed.cs │ │ │ │ │ └── when_running_and_events_get_indexed_before_recovery.cs │ │ │ │ ├── when_running_and_events_are_indexed.cs │ │ │ │ ├── when_running_and_events_are_indexed_but_a_stream_and_tombstone.cs │ │ │ │ ├── when_running_and_events_are_indexed_but_more_events_and_tombstone.cs │ │ │ │ ├── when_running_and_events_are_indexed_but_tombstone.cs │ │ │ │ ├── when_running_and_no_indexing.cs │ │ │ │ └── when_running_and_no_indexing_and_other_events.cs │ │ │ └── with_from_category_foreach_projection │ │ │ │ ├── recovery │ │ │ │ ├── when_running_and_events_are_indexed.cs │ │ │ │ ├── when_running_and_events_get_indexed_before_recovery.cs │ │ │ │ ├── when_running_long_parallel_query.cs │ │ │ │ └── when_running_parallel_query.cs │ │ │ │ ├── when_running_and_events_are_indexed.cs │ │ │ │ ├── when_running_and_events_are_indexed_but_a_stream_and_tombstone_postponed.cs │ │ │ │ ├── when_running_and_events_are_indexed_but_tombstone.cs │ │ │ │ ├── when_running_and_events_are_indexed_including_tombstone.cs │ │ │ │ └── when_running_and_then_other_events_tombstone_ant_other_events.cs │ │ └── with_standard_projections_running.cs │ ├── EventStore.Projections.Core.Tests.csproj │ ├── Integration │ │ ├── from_streams_matching │ │ │ ├── when_running_with_stream_metadata.cs │ │ │ └── when_running_without_stream_metadata.cs │ │ ├── link_metadata │ │ │ └── when_running_from_catalog_stream_query.cs │ │ ├── parallel_query │ │ │ ├── when_running_from_catalog_stream_query_twice.cs │ │ │ ├── when_running_from_catalog_stream_query_with_transform.cs │ │ │ └── when_running_from_streams_matching_query.cs │ │ ├── scenarios │ │ │ ├── when_deleting_already_categorized_stream.cs │ │ │ └── when_recategorizing_chat_events_by_users.cs │ │ ├── specification_with_a_v8_query_posted.cs │ │ └── system_projections │ │ │ ├── when_changing_categorization_projection_configurations.cs │ │ │ ├── when_recategorizing_events.cs │ │ │ ├── when_recategorizing_events_while_running.cs │ │ │ └── when_running_system_projections.cs │ ├── LoggingUtils.cs │ ├── Other │ │ ├── Stopwatch.cs │ │ ├── json_serialization.cs │ │ └── when_matching_remaining_path.cs │ ├── Playground │ │ ├── BusTestingExtentions.cs │ │ ├── Launchpad.cs │ │ ├── Launchpad2.cs │ │ ├── Launchpad3.cs │ │ └── LaunchpadBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Queries │ │ └── 1Query.js │ ├── Services │ │ ├── SpecificationWithEmittedStreamsTrackerAndDeleter.cs │ │ ├── TestFixtureWithProjectionCoreService.cs │ │ ├── TestTask.cs │ │ ├── checkpoint_tag │ │ │ ├── checkpoint_tag_by_catalog_stream.cs │ │ │ ├── checkpoint_tag_by_event_type_index_positions.cs │ │ │ ├── checkpoint_tag_by_event_type_index_positions_when_updating.cs │ │ │ ├── checkpoint_tag_by_phase.cs │ │ │ ├── checkpoint_tag_by_prepare_position.cs │ │ │ ├── checkpoint_tag_by_stream_position.cs │ │ │ ├── checkpoint_tag_by_stream_positions.cs │ │ │ ├── checkpoint_tag_by_stream_positions_when_updating.cs │ │ │ ├── checkpoint_tag_by_tf_position.cs │ │ │ ├── checkpoint_tag_phase.cs │ │ │ └── checkpoint_tag_to_from_json.cs │ │ ├── command_reader_response_reader_integration │ │ │ ├── specification_with_command_reader_and_response_reader.cs │ │ │ ├── when_a_node_becomes_master.cs │ │ │ ├── when_command_reader_starts_before_response_reader.cs │ │ │ ├── when_command_reader_times_out_reading_control_stream_on_startup.cs │ │ │ ├── when_command_reader_times_out_reading_projection_core_stream_on_startup.cs │ │ │ └── when_response_reader_starts_before_command_reader.cs │ │ ├── core_coordinator │ │ │ ├── when_restarting_with_projection_type_all.cs │ │ │ ├── when_restarting_with_projection_type_none.cs │ │ │ ├── when_restarting_with_projection_type_system.cs │ │ │ ├── when_starting_with_projection_type_all.cs │ │ │ ├── when_starting_with_projection_type_none.cs │ │ │ ├── when_starting_with_projection_type_system.cs │ │ │ ├── when_stopping_with_projection_type_all.cs │ │ │ ├── when_stopping_with_projection_type_none.cs │ │ │ └── when_stopping_with_projection_type_system.cs │ │ ├── core_projection │ │ │ ├── FakeProjectionHandler.cs │ │ │ ├── TestCheckpointManagerMessageHandler.cs │ │ │ ├── TestFixtureUtils.cs │ │ │ ├── TestFixtureWithCoreProjection.cs │ │ │ ├── TestFixtureWithCoreProjectionLoaded.cs │ │ │ ├── TestFixtureWithCoreProjectionStarted.cs │ │ │ ├── TestFixtureWithExistingEvents.cs │ │ │ ├── TestFixtureWithReadWriteDispatchers.cs │ │ │ ├── another_epoch │ │ │ │ └── when_loading_an_existing_projection.cs │ │ │ ├── checkpoint_manager │ │ │ │ ├── FakeCoreProjection.cs │ │ │ │ ├── TestFixtureWithCoreProjectionCheckpointManager.cs │ │ │ │ ├── checkpoint_manager_with_partition.cs │ │ │ │ ├── multi_stream │ │ │ │ │ ├── TestFixtureWithMultiStreamCheckpointManager.cs │ │ │ │ │ ├── when_prerecording_event_order.cs │ │ │ │ │ ├── when_starting_and_enqueue_prerecorded_events_read_times_out.cs │ │ │ │ │ ├── when_starting_and_read_prerecorded_events_successfully.cs │ │ │ │ │ ├── when_starting_and_read_prerecorded_events_times_out.cs │ │ │ │ │ ├── when_starting_with_prerecorded_events_after_the_last_checkpoint.cs │ │ │ │ │ ├── when_starting_with_prerecorded_events_before_the_last_checkpoint.cs │ │ │ │ │ ├── when_starting_with_prerecorded_events_in_past_epoch.cs │ │ │ │ │ └── with_multi_stream_checkpoint_manager.cs │ │ │ │ ├── when_a_checkpoint_has_been_completed_and_requesting_checkpoint_to_stop.cs │ │ │ │ ├── when_a_core_projection_checkpoint_manager_has_been_created.cs │ │ │ │ ├── when_a_default_checkpoint_manager_has_been_reinitialized.cs │ │ │ │ ├── when_beginning_to_load_state_the_core_projection_checkpoint_manager.cs │ │ │ │ ├── when_creating_a_default_checkpoint_manager.cs │ │ │ │ ├── when_multiple_event_processed_received_the_core_projection_checkpoint_manager.cs │ │ │ │ └── when_starting_the_core_projection_checkpoint_manager.cs │ │ │ ├── checkpoint_suggested.cs │ │ │ ├── multi_phase │ │ │ │ ├── specification_with_multi_phase_core_projection.cs │ │ │ │ ├── when_completing_phase1_of_a_multiphase_projection.cs │ │ │ │ ├── when_creating_a_multi_phase_projection.cs │ │ │ │ ├── when_starting_a_multi_phase_projection.cs │ │ │ │ └── when_starting_phase2_without_a_reader_strategy.cs │ │ │ ├── parallel_query │ │ │ │ ├── specification_with_parallel_query.cs │ │ │ │ ├── when_handling_committed_event_received_messages.cs │ │ │ │ ├── when_handling_partition_processing_result_messages.cs │ │ │ │ └── when_handling_reordered_partition_processing_result_messages.cs │ │ │ ├── projection_checkpoint │ │ │ │ ├── the_non_started_checkpoint.cs │ │ │ │ ├── the_started_checkpoint_with_some_events_emitted.cs │ │ │ │ ├── when_creating_a_projection_checkpoint.cs │ │ │ │ ├── when_emitting_events_before_from_position_the_projection_checkpoint.cs │ │ │ │ ├── when_emitting_events_in_backward_order_to_the_same_stream_the_projection_checkpoint.cs │ │ │ │ ├── when_emitting_events_in_correct_order_the_started_projection_checkpoint.cs │ │ │ │ ├── when_emitting_events_the_non_started_checkpoint.cs │ │ │ │ ├── when_emitting_events_with_maximum_allowed_writes_in_flight_set.cs │ │ │ │ ├── when_emitting_events_with_null_streamId.cs │ │ │ │ ├── when_handling_stream_awaiting_message.cs │ │ │ │ ├── when_requesting_checkpoint_after_all_writes_completed.cs │ │ │ │ ├── when_requesting_checkpoint_before_all_writes_completed.cs │ │ │ │ ├── when_starting_the_projection_checkpoint_with_some_events_already_emitted.cs │ │ │ │ └── when_the_projection_checkpoint_has_been_started.cs │ │ │ ├── projection_checkpoint_reader │ │ │ │ ├── when_projection_reader_reads_successfully.cs │ │ │ │ ├── when_projection_reader_times_out_on_read.cs │ │ │ │ └── with_projection_checkpoint_reader.cs │ │ │ ├── query_by_stream │ │ │ │ ├── specification_with_from_catalog_query.cs │ │ │ │ ├── when_handling_multiple_empty_streams.cs │ │ │ │ ├── when_handling_multiple_non_empty_streams.cs │ │ │ │ └── when_receiving_a_committed_event_the_projection_with_partitioned_state_by_custom_rule_should.cs │ │ │ ├── slave_projection │ │ │ │ └── specification_with_slave_core_projection.cs │ │ │ ├── when_creating_a_new_partitiion_the_projection_should.cs │ │ │ ├── when_creating_a_projection.cs │ │ │ ├── when_killing_a_projection_and_an_event_is_received.cs │ │ │ ├── when_loading_a_new_projection.cs │ │ │ ├── when_loading_an_existing_projection.cs │ │ │ ├── when_receiving_a_committed_event_the_projection_should.cs │ │ │ ├── when_receiving_a_committed_event_the_projection_with_partitioned_state_by_custom_rule_should.cs │ │ │ ├── when_receiving_a_committed_event_the_projection_with_partitioned_state_should.cs │ │ │ ├── when_receiving_committed_event_the_projection_with_existing_partitioned_state_should.cs │ │ │ ├── when_receiving_committed_events_the_projection_with_partitioned_state_should.cs │ │ │ ├── when_receiving_committed_events_the_projection_without_when.cs │ │ │ ├── when_starting_a_new_projection.cs │ │ │ ├── when_starting_a_new_projection_and_an_event_is_received.cs │ │ │ ├── when_starting_a_projection.cs │ │ │ ├── when_starting_an_existing_projection.cs │ │ │ ├── when_starting_an_existing_projection_and_an_event_is_received.cs │ │ │ ├── when_starting_an_existing_projection_missing_last_emitted_event_and_state_snapshot.cs │ │ │ ├── when_starting_an_existing_projection_missing_last_state_snapshot.cs │ │ │ ├── when_stopping_a_projection_with_existing_state_without_updating_the_state.cs │ │ │ ├── when_the_projection_with_pending_checkpoint_is_stopped.cs │ │ │ ├── when_the_projection_with_pending_writes_is_stopped.cs │ │ │ ├── when_the_state_handler_does_emit_an_event_the_projection_should.cs │ │ │ ├── when_the_state_handler_does_emit_multiple_interleaved_events_into_the_same_stream_the_projection_should.cs │ │ │ ├── when_the_state_handler_does_emit_multiple_subsequent_events_into_the_same_stream_the_projection_should.cs │ │ │ ├── when_the_state_handler_does_not_process_event_the_projection_should.cs │ │ │ ├── when_the_state_handler_does_process_an_event_the_projection_should.cs │ │ │ ├── when_the_state_handler_fails_to_load_state_the_projection_should.cs │ │ │ ├── when_the_state_handler_fails_to_process_an_event_the_projection_should.cs │ │ │ └── when_the_state_handler_with_configured_state_stream_does_process_an_event_the_projection_should.cs │ │ ├── core_service │ │ │ ├── when_a_subscribed_projection_handler_throws.cs │ │ │ └── when_unsubscribing_a_subscribed_projection.cs │ │ ├── emitted_stream │ │ │ ├── a_checkpoint_requested_on_a_non_started_stream.cs │ │ │ ├── another_epoch │ │ │ │ ├── when_handling_an_emit_with_expected_tag_the_started_in_recovery_stream.cs │ │ │ │ ├── when_handling_emits_with_previously_written_events_at_the_same_position.cs │ │ │ │ └── when_handling_emits_with_previously_written_events_in_different_epochs.cs │ │ │ ├── another_projection │ │ │ │ └── when_handling_an_emit_with_expected_tag_the_started_in_recovery_stream.cs │ │ │ ├── when_a_read_completes_before_a_timeout_in_recovery.cs │ │ │ ├── when_a_read_times_out_in_recovery.cs │ │ │ ├── when_checkpoint_requested.cs │ │ │ ├── when_checkpoint_requested_but_disabled.cs │ │ │ ├── when_checkpoint_requested_with_all_writes_already_completed.cs │ │ │ ├── when_checkpoint_requested_with_pending_writes.cs │ │ │ ├── when_creating_an_emitted_stream.cs │ │ │ ├── when_handling_a_timeout.cs │ │ │ ├── when_handling_an_emit_the_not_started_stream.cs │ │ │ ├── when_handling_an_emit_the_started_in_recovery_stream.cs │ │ │ ├── when_handling_an_emit_to_the_nonexisting_stream.cs │ │ │ ├── when_handling_an_emit_with_caused_by_and_correlation_id.cs │ │ │ ├── when_handling_an_emit_with_committed_callback.cs │ │ │ ├── when_handling_an_emit_with_expected_tag_the_started_in_recovery_stream.cs │ │ │ ├── when_handling_an_emit_with_extra_metadata.cs │ │ │ ├── when_handling_an_emit_with_not_ready_event.cs │ │ │ ├── when_handling_an_emit_with_stream_metadata.cs │ │ │ ├── when_handling_an_emit_with_write_as_configured.cs │ │ │ ├── when_handling_emits_in_invalid_order.cs │ │ │ ├── when_handling_emits_with_previously_written_events.cs │ │ │ ├── when_handling_emits_with_previously_written_events_at_the_same_position.cs │ │ │ ├── when_the_stream_is_started.cs │ │ │ └── when_the_stream_is_started_with_already_emitted_events.cs │ │ ├── emitted_streams_deleter │ │ │ └── when_deleting │ │ │ │ ├── when_checkpoint_read_times_out.cs │ │ │ │ ├── when_delete_stream_succeeds.cs │ │ │ │ ├── when_emitted_streams_read_times_out.cs │ │ │ │ ├── with_an_existing_emitted_streams_stream.cs │ │ │ │ ├── with_emitted_stream_deleter.cs │ │ │ │ ├── with_multiple_tracked_streams.cs │ │ │ │ └── with_no_emitted_streams_stream.cs │ │ ├── emitted_streams_tracker │ │ │ └── when_tracking │ │ │ │ ├── with_tracking_disabled.cs │ │ │ │ ├── with_tracking_enabled.cs │ │ │ │ └── with_tracking_enabled_with_duplicate_event_streams.cs │ │ ├── event_filter │ │ │ ├── TestFixtureWithEventFilter.cs │ │ │ ├── empty_event_filter.cs │ │ │ ├── include_everything_event_filter.cs │ │ │ ├── include_everything_handling_deleted_notifications_event_filter.cs │ │ │ ├── just_all_events_event_filter.cs │ │ │ ├── just_from_all_event_filter.cs │ │ │ ├── specific_category_event_filter.cs │ │ │ ├── specific_event_event_filter.cs │ │ │ ├── specific_events_event_filter.cs │ │ │ ├── specific_stream_and_category_event_filter.cs │ │ │ ├── specific_stream_event_filter.cs │ │ │ └── specific_streams_event_filter.cs │ │ ├── event_position.cs │ │ ├── event_reader │ │ │ ├── TestFixtureWithEventReaderService.cs │ │ │ ├── all_streams_catalog_event_reader │ │ │ │ └── when_reading_catalog.cs │ │ │ ├── all_streams_with_links_event_reader │ │ │ │ ├── when_including_links.cs │ │ │ │ └── when_not_including_links.cs │ │ │ ├── by_stream_catalog_event_reader │ │ │ │ └── when_reading_catalog.cs │ │ │ ├── event_by_type_index_event_reader │ │ │ │ ├── EventByTypeIndexEventReaderTestFixture.cs │ │ │ │ ├── when_index_based_checkpoint_read_timeout_occurs.cs │ │ │ │ ├── when_index_based_read_completes_before_timeout.cs │ │ │ │ ├── when_index_based_read_timeout_occurs.cs │ │ │ │ ├── when_tf_based_read_completes_before_timeout.cs │ │ │ │ └── when_tf_based_read_timeout_occurs.cs │ │ │ ├── event_by_type_index_reader │ │ │ │ └── catching_up │ │ │ │ │ ├── index_checkpoint.cs │ │ │ │ │ ├── when_one_event_type_has_been_never_emitted.cs │ │ │ │ │ └── when_reordering_happens_in_event_by_type_index.cs │ │ │ ├── externally_fed_by_stream_event_reader │ │ │ │ └── when_fed_with_streams.cs │ │ │ ├── heading_event_reader │ │ │ │ ├── FakeReaderSubscription.cs │ │ │ │ ├── when_heading_event_reader_has_been_created.cs │ │ │ │ ├── when_starting_a_heading_event_reader.cs │ │ │ │ ├── when_the_heading_event_reader_handles_an_event.cs │ │ │ │ ├── when_the_heading_event_reader_subscribes_a_projection.cs │ │ │ │ ├── when_the_heading_event_reader_unsubscribes_a_projection.cs │ │ │ │ ├── when_the_heading_event_reader_with_a_subscribed_projection_handles_a_cached_event_and_throws.cs │ │ │ │ ├── when_the_heading_event_reader_with_a_subscribed_projection_handles_a_live_event_and_throws.cs │ │ │ │ ├── when_the_heading_event_reader_with_a_subscribed_projection_handles_an_event.cs │ │ │ │ └── when_the_heading_event_reader_with_a_subscribed_projection_handles_an_idle_notification.cs │ │ │ ├── multi_stream_reader │ │ │ │ ├── reordering.cs │ │ │ │ ├── when_creating.cs │ │ │ │ ├── when_handling_deleted_streams.cs │ │ │ │ ├── when_handling_eof_for_all_streams_and_idle_eof.cs │ │ │ │ ├── when_handling_read_completed.cs │ │ │ │ ├── when_handling_read_completed_and_no_stream.cs │ │ │ │ ├── when_handling_read_completed_for_all_streams.cs │ │ │ │ ├── when_handling_read_completed_for_all_streams_after_pause_requested.cs │ │ │ │ ├── when_handling_read_completed_for_all_streams_and_eofs.cs │ │ │ │ ├── when_handling_read_completed_for_all_streams_then_pause_requested_then_eof.cs │ │ │ │ ├── when_handling_streams_with_deleted_events_and_reader_starting_after_event_zero.cs │ │ │ │ ├── when_handling_streams_with_deleted_events_and_reader_starting_at_event_zero.cs │ │ │ │ ├── when_has_been_created.cs │ │ │ │ ├── when_onetime_reader_handles_eof.cs │ │ │ │ ├── when_read_completes_before_timeout.cs │ │ │ │ ├── when_read_for_one_stream_completes_but_times_out_for_another.cs │ │ │ │ ├── when_read_timeout_occurs.cs │ │ │ │ └── when_resuming.cs │ │ │ ├── stream_reader │ │ │ │ ├── when_creating_stream_event_reader.cs │ │ │ │ ├── when_handling_deleted_streams.cs │ │ │ │ ├── when_handling_eof_and_idle_eof.cs │ │ │ │ ├── when_handling_no_stream.cs │ │ │ │ ├── when_handling_read_completed_and_eof.cs │ │ │ │ ├── when_handling_read_completed_stream_event_reader.cs │ │ │ │ ├── when_handling_read_completed_then_pause_then_eof.cs │ │ │ │ ├── when_handling_soft_deleted_stream_with_a_single_event_event_reader.cs │ │ │ │ ├── when_handling_streams_with_deleted_events_and_reader_starting_after_event_zero.cs │ │ │ │ ├── when_handling_streams_with_deleted_events_and_reader_starting_at_event_zero.cs │ │ │ │ ├── when_onetime_reader_handles_eof.cs │ │ │ │ ├── when_paused_then_handling_no_stream.cs │ │ │ │ ├── when_read_completes_before_timeout.cs │ │ │ │ ├── when_read_timeout_occurs.cs │ │ │ │ ├── when_resuming_stream_event_reader.cs │ │ │ │ └── when_stream_event_reader_has_been_created.cs │ │ │ └── transaction_file_reader │ │ │ │ ├── when_handling_eof_and_idle_eof.cs │ │ │ │ ├── when_handling_stream_hard_deleted.cs │ │ │ │ ├── when_handling_stream_soft_deleted.cs │ │ │ │ ├── when_onetime_reader_handles_eof.cs │ │ │ │ ├── when_read_completes_before_timeout.cs │ │ │ │ └── when_read_timeout_occurs.cs │ │ ├── event_reordering_projection_subscription │ │ │ ├── TestFixtureWithEventReorderingProjectionSubscription.cs │ │ │ ├── when_creating_projection_subscription.cs │ │ │ ├── when_handling_a_second_event_after_the_delay.cs │ │ │ ├── when_handling_an_event_after_the_delay_and_reordering_is_required.cs │ │ │ ├── when_handling_an_idle_notification_and_reordering_is_required.cs │ │ │ ├── when_handling_committed_event_passing_the_filter.cs │ │ │ ├── when_handling_duplicate_events.cs │ │ │ ├── when_handling_two_subsequent_events.cs │ │ │ └── when_receiving_multiple_events_not_passing_event_filter.cs │ │ ├── feed_reader │ │ │ ├── TestFixtureWithFeedReaderService.cs │ │ │ ├── feed_reader.cs │ │ │ └── feed_reader_by_event_indexes.cs │ │ ├── handlers │ │ │ ├── categorize_events_by_correlation_id.cs │ │ │ └── categorize_events_by_stream_path.cs │ │ ├── http_service │ │ │ └── authorization_tests.cs │ │ ├── master_core_projection_response_reader │ │ │ ├── when_response_reader_has_read_timeout.cs │ │ │ ├── when_response_reader_starts_up_successfully.cs │ │ │ └── with_master_core_response_reader.cs │ │ ├── mixed_checkpoint_tags.cs │ │ ├── not_started_event_distribution_point_should.cs │ │ ├── parallel_processing_load_balancer │ │ │ ├── specification_with_parallel_processing_load_balancer.cs │ │ │ ├── when_accounting_completed_task.cs │ │ │ ├── when_accounting_completed_unmeasured_task.cs │ │ │ ├── when_accounting_measured_tasks.cs │ │ │ ├── when_completing_a_task_and_other_pending.cs │ │ │ ├── when_completing_a_task_and_others_pending.cs │ │ │ ├── when_creating.cs │ │ │ ├── when_scheduling_first_task.cs │ │ │ ├── when_scheduling_first_tasks.cs │ │ │ ├── when_scheduling_many_measured_tasks.cs │ │ │ └── when_scheduling_many_unmeasured_tasks.cs │ │ ├── partition_state │ │ │ └── partition_state.cs │ │ ├── partition_state_cache │ │ │ ├── when_caching_a_parition_state.cs │ │ │ ├── when_caching_a_parition_state_as_locked.cs │ │ │ ├── when_relocking_the_state_at_earlier_position.cs │ │ │ ├── when_relocking_the_state_at_later_position.cs │ │ │ ├── when_relocking_the_state_at_the_same_position.cs │ │ │ ├── when_the_partition_state_cache_has_been_created.cs │ │ │ ├── when_the_partition_state_cache_has_been_reinitialized.cs │ │ │ ├── when_unlocking_an_overflowed_cache.cs │ │ │ ├── when_unlocking_and_forgetting_part_of_cached_states.cs │ │ │ └── when_unlocking_part_of_cached_states.cs │ │ ├── partition_state_update_manager │ │ │ ├── FakeEventWriter.cs │ │ │ ├── when_created.cs │ │ │ ├── when_creating.cs │ │ │ ├── when_state_updated.cs │ │ │ ├── when_state_updated_twice.cs │ │ │ └── when_two_states_were_updated.cs │ │ ├── paused_at_event_distribution_point.cs │ │ ├── position_tagging │ │ │ ├── event_by_type_index_position_tagger │ │ │ │ ├── event_by_type_index_position_tagger.cs │ │ │ │ ├── when_creating_event_by_type_index_position_tracker.cs │ │ │ │ ├── when_updating_event_by_type_index_position_tracker_from_a_tag.cs │ │ │ │ ├── when_updating_event_by_type_index_position_tracker_to_zero.cs │ │ │ │ └── when_updating_postion_event_by_type_index_position_tracker.cs │ │ │ ├── multistream_position_tagger │ │ │ │ ├── multistream_position_tagger.cs │ │ │ │ ├── when_creating_multistream_postion_tracker.cs │ │ │ │ ├── when_updating_multistream_postion_tracker_from_a_tag.cs │ │ │ │ ├── when_updating_multistream_postion_tracker_to_zero.cs │ │ │ │ └── when_updating_postion_multistream_position_tracker.cs │ │ │ ├── prepare_position_tagger │ │ │ │ ├── prepare_position_tagger.cs │ │ │ │ ├── when_creating_prepare_postion_tracker.cs │ │ │ │ ├── when_reinitializing_prepapre_postion_tracker.cs │ │ │ │ ├── when_updating_postion_tagger_from_a_tag.cs │ │ │ │ └── when_updating_prepare_postion_tracker.cs │ │ │ ├── stream_position_tagger │ │ │ │ ├── stream_position_tagger.cs │ │ │ │ ├── when_creating_stream_postion_tracker.cs │ │ │ │ ├── when_updating_postion_stream_position_tracker.cs │ │ │ │ ├── when_updating_stream_postion_tracker_from_a_tag.cs │ │ │ │ └── when_updating_stream_postion_tracker_to_zero.cs │ │ │ └── transaction_file_position_tagger │ │ │ │ ├── transaction_file_position_tagger.cs │ │ │ │ ├── when_creating_transaction_file_postion_tracker.cs │ │ │ │ ├── when_reinitializing_transaction_file_postion_tracker.cs │ │ │ │ ├── when_updating_postion_tagger_from_a_tag.cs │ │ │ │ └── when_updating_transaction_file_postion_tracker.cs │ │ ├── projection_core_service_command_reader │ │ │ ├── specification_with_projection_core_service_command_reader.cs │ │ │ ├── specification_with_projection_core_service_command_reader_started.cs │ │ │ ├── when_creating.cs │ │ │ ├── when_receiving_a_command.cs │ │ │ ├── when_receiving_create_and_prepare_command.cs │ │ │ ├── when_receiving_create_and_prepare_slave_command.cs │ │ │ ├── when_receiving_create_prepared_command.cs │ │ │ ├── when_receiving_dispose_command.cs │ │ │ ├── when_receiving_get_result_command.cs │ │ │ ├── when_receiving_get_state_command.cs │ │ │ ├── when_receiving_kill_command.cs │ │ │ ├── when_receiving_load_stopped_command.cs │ │ │ ├── when_receiving_slave_projections_started_response.cs │ │ │ ├── when_receiving_spool_stream_reading_command.cs │ │ │ ├── when_receiving_start_command.cs │ │ │ ├── when_receiving_stop_command.cs │ │ │ ├── when_receiving_two_commands.cs │ │ │ └── when_starting.cs │ │ ├── projection_core_service_response_writer │ │ │ ├── specification_with_projection_manager_command_writer.cs │ │ │ ├── when_delete_command.cs │ │ │ ├── when_handling_abort_command.cs │ │ │ ├── when_handling_disable_command.cs │ │ │ ├── when_handling_enable_command.cs │ │ │ ├── when_handling_faulted_message.cs │ │ │ ├── when_handling_get_query_command.cs │ │ │ ├── when_handling_get_result_command.cs │ │ │ ├── when_handling_get_state_command.cs │ │ │ ├── when_handling_get_statistics_command.cs │ │ │ ├── when_handling_post_command.cs │ │ │ ├── when_handling_prepared_message.cs │ │ │ ├── when_handling_reset_command.cs │ │ │ ├── when_handling_result_report_message.cs │ │ │ ├── when_handling_set_runas_command.cs │ │ │ ├── when_handling_slave_projection_reader_assigned_message.cs │ │ │ ├── when_handling_start_slave_projections_command.cs │ │ │ ├── when_handling_started_message.cs │ │ │ ├── when_handling_state_report_message.cs │ │ │ ├── when_handling_statistics_report_message.cs │ │ │ ├── when_handling_stopped_message.cs │ │ │ └── when_handling_update_query_command.cs │ │ ├── projection_subscription │ │ │ ├── TestFixtureWithProjectionSubscription.cs │ │ │ ├── when_creating_projection_subscription.cs │ │ │ ├── when_handling_committed_event_passing_the_filter.cs │ │ │ ├── when_handling_duplicate_events.cs │ │ │ ├── when_handling_enough_events_for_a_checkpoint_after_specified_time_elapses.cs │ │ │ ├── when_handling_enough_events_for_a_checkpoint_before_specified_time_elapses.cs │ │ │ ├── when_handling_multiple_committed_event_passing_the_filter.cs │ │ │ └── when_receiving_multiple_events_not_passing_event_filter.cs │ │ ├── projection_version │ │ │ └── when_comparing.cs │ │ ├── projections_manager │ │ │ ├── FakeBiStateProjection.cs │ │ │ ├── FakeForeachStreamProjection.cs │ │ │ ├── FakeFromCatalogStreamProjection.cs │ │ │ ├── FakeProjection.cs │ │ │ ├── TestFixtureWithJsProjection.cs │ │ │ ├── TestFixtureWithProjectionCoreAndManagementServices.cs │ │ │ ├── bi_state │ │ │ │ └── a_new_posted_projection.cs │ │ │ ├── command_writer │ │ │ │ ├── specification_with_projection_manager_command_writer.cs │ │ │ │ ├── when_handling_create_and_prepare_message.cs │ │ │ │ ├── when_handling_create_and_prepare_slave_message.cs │ │ │ │ ├── when_handling_create_prepared_message.cs │ │ │ │ ├── when_handling_dispose_message.cs │ │ │ │ ├── when_handling_get_result_message.cs │ │ │ │ ├── when_handling_get_state_message.cs │ │ │ │ ├── when_handling_kill_message.cs │ │ │ │ ├── when_handling_load_stopped_message.cs │ │ │ │ ├── when_handling_start_message.cs │ │ │ │ └── when_handling_stop_message.cs │ │ │ ├── continuous │ │ │ │ ├── a_new_posted_projection.cs │ │ │ │ └── a_running_projection.cs │ │ │ ├── managed_projection │ │ │ │ ├── when_creating_a_managed_projection.cs │ │ │ │ ├── when_loading_a_managed_projection_state.cs │ │ │ │ ├── when_persisted_state_write_fails.cs │ │ │ │ ├── when_starting_a_managed_projection_without_slave_projections.cs │ │ │ │ └── when_updating_projection_config.cs │ │ │ ├── projection_manager_response_reader │ │ │ │ ├── specification_with_projection_manager_response_reader.cs │ │ │ │ ├── specification_with_projection_manager_response_reader_started.cs │ │ │ │ ├── when_creating.cs │ │ │ │ ├── when_read_results_in_an_error.cs │ │ │ │ ├── when_read_times_out.cs │ │ │ │ ├── when_receiving_a_response.cs │ │ │ │ ├── when_receiving_faulted_response.cs │ │ │ │ ├── when_receiving_prepared_response.cs │ │ │ │ ├── when_receiving_projection_worker_started_response.cs │ │ │ │ ├── when_receiving_result_report_response.cs │ │ │ │ ├── when_receiving_started_response.cs │ │ │ │ ├── when_receiving_state_report_response.cs │ │ │ │ ├── when_receiving_statistics_report_response.cs │ │ │ │ ├── when_receiving_stopped_response.cs │ │ │ │ ├── when_starting.cs │ │ │ │ └── when_timeout_received_after_read_succeeds.cs │ │ │ ├── query │ │ │ │ ├── a_completed_projection.cs │ │ │ │ ├── a_failed_projection.cs │ │ │ │ ├── a_new_posted_projection.cs │ │ │ │ ├── a_running_foreach_stream_projection.cs │ │ │ │ ├── a_running_projection.cs │ │ │ │ └── an_expired_projection.cs │ │ │ ├── runas │ │ │ │ ├── when_posting_a_persistent_projection.cs │ │ │ │ └── when_posting_a_transient_projection.cs │ │ │ ├── slave_projection │ │ │ │ └── specification_with_slave_projection.cs │ │ │ ├── specification_with_projection_management_service.cs │ │ │ ├── when_a_disabled_projection_has_been_loaded.cs │ │ │ ├── when_creating_projection_manager.cs │ │ │ ├── when_deleting_a_faulted_persistent_projection.cs │ │ │ ├── when_deleting_a_persistent_projection.cs │ │ │ ├── when_deleting_a_persistent_projection_and_keep_checkpoint_stream.cs │ │ │ ├── when_deleting_a_persistent_projection_and_keep_emitted_streams_stream.cs │ │ │ ├── when_deleting_a_persistent_projection_and_not_authorised.cs │ │ │ ├── when_deleting_a_running_persistent_projection.cs │ │ │ ├── when_deleting_a_system_projection.cs │ │ │ ├── when_handling_start_slave_projections_message.cs │ │ │ ├── when_posting_a_persistent_projection.cs │ │ │ ├── when_posting_a_persistent_projection_and_registration_write_fails.cs │ │ │ ├── when_posting_a_persistent_projection_and_writes_succeed.cs │ │ │ ├── when_posting_an_onetime_projection.cs │ │ │ ├── when_reading_registered_projections │ │ │ │ ├── with_no_stream.cs │ │ │ │ └── with_no_stream_and_intialize_system_projections.cs │ │ │ ├── when_recreating_a_deleted_projection.cs │ │ │ ├── when_requesting_partition_state_from_a_stopped_foreach_projection.cs │ │ │ ├── when_starting_the_projection_manager_with_duplicate_projection_created.cs │ │ │ ├── when_starting_the_projection_manager_with_existing_partially_created_projection.cs │ │ │ ├── when_starting_the_projection_manager_with_existing_projection.cs │ │ │ ├── when_the_onetime_projection_has_been_posted.cs │ │ │ ├── when_the_projections_initialized_write_fails.cs │ │ │ ├── when_updating_a_disabled_projection_query_text.cs │ │ │ ├── when_updating_a_faulted_projection_query_text_invalid_defintion.cs │ │ │ ├── when_updating_a_persistent_projection_emit_enabled_option.cs │ │ │ ├── when_updating_a_persistent_projection_query_text.cs │ │ │ └── when_updating_an_onetime_projection_query_text.cs │ │ ├── projections_system │ │ │ ├── updating_projections │ │ │ │ └── updating_projection_sources.cs │ │ │ ├── when_requesting_state_from_a_faulted_projection.cs │ │ │ ├── when_starting_up.cs │ │ │ ├── with_projection_config.cs │ │ │ └── with_projections_subsystem.cs │ │ ├── result_emitter │ │ │ └── result_emitter.cs │ │ ├── slave_projection_response_writer │ │ │ ├── specification_with_slave_projection_response_writer.cs │ │ │ ├── when_handling_partition_measured_message.cs │ │ │ ├── when_handling_partition_processing_result_message.cs │ │ │ ├── when_handling_partition_progress_message.cs │ │ │ └── when_handling_spool_stream_reading_message.cs │ │ ├── staged_processing_queue.cs │ │ ├── v8 │ │ │ ├── v8_internals.cs │ │ │ ├── when_compiling_v8_projection.cs │ │ │ ├── when_creating_v8_projection.cs │ │ │ ├── when_defining_a_v8_projection.cs │ │ │ ├── when_initializing_state.cs │ │ │ ├── when_not_returning_state_from_a_js_handler.cs │ │ │ ├── when_partitioning_by_custom_rule.cs │ │ │ ├── when_running_a_faulting_v8_projection.cs │ │ │ ├── when_running_a_projection_with_created_handler.cs │ │ │ ├── when_running_a_v8_projection_emitting_metadata.cs │ │ │ ├── when_running_a_v8_projection_emitting_stream_links.cs │ │ │ ├── when_running_a_v8_projection_with_not_passing_filter_by.cs │ │ │ ├── when_running_a_v8_projection_with_transform_by.cs │ │ │ ├── when_running_bi_state_v8_projection.cs │ │ │ ├── when_running_body_reflecting_v8_projection.cs │ │ │ ├── when_running_counting_v8_projection.cs │ │ │ ├── when_running_emitting_v8_projection.cs │ │ │ ├── when_running_reflecting_v8_projection.cs │ │ │ └── when_v8_projection_loading_state.cs │ │ └── write_query_result_phase │ │ │ └── creating.cs │ ├── TestsInitFixture.cs │ └── run.cmd ├── EventStore.Projections.Core │ ├── Common │ │ ├── AllowedWritesInFlight.cs │ │ └── ProjectionConsts.cs │ ├── EventReaders │ │ └── Feeds │ │ │ ├── FeedReader.cs │ │ │ └── FeedReaderService.cs │ ├── EventStore.Projections.Core.csproj │ ├── Internal │ │ ├── LoggingExtensions.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ ├── Messages │ │ ├── CoreProjectionManagementControlMessage.cs │ │ ├── CoreProjectionManagementMessage.cs │ │ ├── CoreProjectionManagementMessageBase.cs │ │ ├── CoreProjectionProcessingMessage.cs │ │ ├── CoreProjectionStatusMessage.cs │ │ ├── EventReaderSubscriptionMessageBase.cs │ │ ├── EventReaders │ │ │ └── Feeds │ │ │ │ └── FeedReaderMessage.cs │ │ ├── ICoreProjection.cs │ │ ├── IProjectionCheckpointManager.cs │ │ ├── IQuerySources.cs │ │ ├── ParallelQueryProcessingMessages.cs │ │ ├── ParallelQueryProcessingOutputMessages.cs │ │ ├── Persisted │ │ │ ├── Commands │ │ │ │ ├── CreateAndPrepareCommand.cs │ │ │ │ ├── CreateAndPrepareSlaveCommand.cs │ │ │ │ ├── CreatePreparedCommand.cs │ │ │ │ ├── DisposeCommand.cs │ │ │ │ ├── GetResultCommand.cs │ │ │ │ ├── GetStateCommand.cs │ │ │ │ ├── KillCommand.cs │ │ │ │ ├── LoadStoppedCommand.cs │ │ │ │ ├── PersistedProjectionConfig.cs │ │ │ │ ├── PersistedProjectionVersion.cs │ │ │ │ ├── SlaveProjectionsStartedResponse.cs │ │ │ │ ├── SpoolStreamReadingCommand.cs │ │ │ │ ├── StartCommand.cs │ │ │ │ └── StopCommand.cs │ │ │ └── Responses │ │ │ │ ├── AbortCommand.cs │ │ │ │ ├── DeleteCommand.cs │ │ │ │ ├── DisableCommand.cs │ │ │ │ ├── EnableCommand.cs │ │ │ │ ├── Faulted.cs │ │ │ │ ├── GetQueryCommand.cs │ │ │ │ ├── GetResultCommand.cs │ │ │ │ ├── GetStateCommand.cs │ │ │ │ ├── GetStatisticsCommand.cs │ │ │ │ ├── PostCommand.cs │ │ │ │ ├── Prepared.cs │ │ │ │ ├── ProjectionWorkerStarted.cs │ │ │ │ ├── ResetCommand.cs │ │ │ │ ├── ResultReport.cs │ │ │ │ ├── SetRunAsCommand.cs │ │ │ │ ├── Slave │ │ │ │ ├── PartitionMeasuredResponse.cs │ │ │ │ ├── PartitionProcessingProgressResponse.cs │ │ │ │ └── PartitionProcessingResultResponse.cs │ │ │ │ ├── SlaveProjectionReaderAssigned.cs │ │ │ │ ├── StartSlaveProjectionsCommand.cs │ │ │ │ ├── Started.cs │ │ │ │ ├── StateReport.cs │ │ │ │ ├── StatisticsReport.cs │ │ │ │ ├── Stopped.cs │ │ │ │ └── UpdateQueryCommand.cs │ │ ├── ProjectionCoreServiceMessage.cs │ │ ├── ProjectionManagementMessage.cs │ │ ├── QuerySourcesDefinition.cs │ │ ├── QuerySourcesDefinitionOptions.cs │ │ ├── ReaderCoreServiceMessage.cs │ │ ├── ReaderSubscriptionManagement.cs │ │ ├── ReaderSubscriptionMessage.cs │ │ ├── SlaveProjectionCommunicationChannel.cs │ │ ├── SlaveProjectionCommunicationChannels.cs │ │ └── SlaveProjectionDefinitions.cs │ ├── Messaging │ │ ├── PublishToWrapEnvelop.cs │ │ ├── UnwrapEnvelopeHandler.cs │ │ └── UnwrapEnvelopeMessage.cs │ ├── Prelude │ │ ├── 1Prelude.js │ │ ├── Modules.js │ │ ├── ModulesExecuted.js │ │ └── Projections.js │ ├── ProjectionCoreWorkersNode.cs │ ├── ProjectionManagerNode.cs │ ├── ProjectionWorkerNode.cs │ ├── ProjectionsStandardComponents.cs │ ├── ProjectionsSubsystem.cs │ ├── Services │ │ ├── Http │ │ │ ├── ProjectionStatisticsHttpFormatted.cs │ │ │ ├── ProjectionsController.cs │ │ │ └── ProjectionsStatisticsHttpFormatted.cs │ │ ├── IProjectionStateHandler.cs │ │ ├── ISingletonTimeoutScheduler.cs │ │ ├── Management │ │ │ ├── IMultiStreamMessageWriter.cs │ │ │ ├── IResponseWriter.cs │ │ │ ├── ManagedProjection.cs │ │ │ ├── ManagedProjectionState.cs │ │ │ ├── ManagedProjectionStates │ │ │ │ ├── AbortedState.cs │ │ │ │ ├── AbortingState.cs │ │ │ │ ├── CompletedState.cs │ │ │ │ ├── CreatingLoadingLoadedState.cs │ │ │ │ ├── DeletingState.cs │ │ │ │ ├── FaultedState.cs │ │ │ │ ├── LoadingStateState.cs │ │ │ │ ├── ManagedProjectionStateBase.cs │ │ │ │ ├── PreparedState.cs │ │ │ │ ├── PreparingState.cs │ │ │ │ ├── RunningState.cs │ │ │ │ ├── StartingState.cs │ │ │ │ ├── StoppedState.cs │ │ │ │ └── StoppingState.cs │ │ │ ├── MasterCoreProjectionResponseReader.cs │ │ │ ├── MultiStreamMessageWriter.cs │ │ │ ├── ProjectionBalancer.cs │ │ │ ├── ProjectionCoreCoordinator.cs │ │ │ ├── ProjectionCoreResponseWriter.cs │ │ │ ├── ProjectionManager.cs │ │ │ ├── ProjectionManagerCommandWriter.cs │ │ │ ├── ProjectionManagerMessageDispatcher.cs │ │ │ ├── ProjectionManagerResponseReader.cs │ │ │ ├── ProjectionStateHandlerFactory.cs │ │ │ ├── ResponseWriter.cs │ │ │ ├── SlaveProjectionResponseWriter.cs │ │ │ ├── TODO.txt │ │ │ └── TimeoutScheduler.cs │ │ ├── Processing │ │ │ ├── AllStreamsCatalogEventReader.cs │ │ │ ├── ByHandleStatePartitionSelector.cs │ │ │ ├── ByPositionStreamStatePartitionSelector.cs │ │ │ ├── ByStreamCatalogEventReader.cs │ │ │ ├── ByStreamStatePartitionSelector.cs │ │ │ ├── BypassingEventFilter.cs │ │ │ ├── CatalogStreamPositionTagger.cs │ │ │ ├── CategoryEventFilter.cs │ │ │ ├── CheckpointSuggestedWorkItem.cs │ │ │ ├── CheckpointTag.cs │ │ │ ├── CheckpointTagExtensions.cs │ │ │ ├── CheckpointWorkItemBase.cs │ │ │ ├── CommittedEventWorkItem.cs │ │ │ ├── CompletedWorkItem.cs │ │ │ ├── ContinuousProjectionProcessingStrategy.cs │ │ │ ├── CoreProjection.cs │ │ │ ├── CoreProjectionCheckpointManager.cs │ │ │ ├── CoreProjectionCheckpointReader.cs │ │ │ ├── CoreProjectionCheckpointWriter.cs │ │ │ ├── CoreProjectionQueue.cs │ │ │ ├── DefaultCheckpointManager.cs │ │ │ ├── DefaultProjectionProcessingStrategy.cs │ │ │ ├── EmittedDataEvent.cs │ │ │ ├── EmittedEvent.cs │ │ │ ├── EmittedEventEnvelope.cs │ │ │ ├── EmittedLinkTo.cs │ │ │ ├── EmittedLinkToWithRecategorization.cs │ │ │ ├── EmittedStream.cs │ │ │ ├── EmittedStreamsDeleter.cs │ │ │ ├── EmittedStreamsTracker.cs │ │ │ ├── EmittedStreamsWriter.cs │ │ │ ├── EventByTypeIndexEventFilter.cs │ │ │ ├── EventByTypeIndexEventReader.cs │ │ │ ├── EventByTypeIndexPositionTagger.cs │ │ │ ├── EventFilter.cs │ │ │ ├── EventProcessedResult.cs │ │ │ ├── EventProcessingProjectionProcessingPhase.cs │ │ │ ├── EventReader.cs │ │ │ ├── EventReaderCoreService.cs │ │ │ ├── EventReorderingReaderSubscription.cs │ │ │ ├── EventSubscriptionBasedProjectionProcessingPhase.cs │ │ │ ├── ExternallyFedByStreamEventReader.cs │ │ │ ├── ExternallyFedReaderStrategy.cs │ │ │ ├── ExtraMetaData.cs │ │ │ ├── GetDataWorkItemBase.cs │ │ │ ├── GetResultWorkItem.cs │ │ │ ├── GetStateWorkItem.cs │ │ │ ├── HeadingEventReader.cs │ │ │ ├── ICoreProjectionCheckpointManager.cs │ │ │ ├── ICoreProjectionForProcessingPhase.cs │ │ │ ├── IEmittedStreamsWriter.cs │ │ │ ├── IEventProcessingPhase.cs │ │ │ ├── IEventReader.cs │ │ │ ├── IEventWriter.cs │ │ │ ├── IProgressResultWriter.cs │ │ │ ├── IProjectionProcessingPhase.cs │ │ │ ├── IReaderStrategy.cs │ │ │ ├── IReaderSubscription.cs │ │ │ ├── IResultEventEmitter.cs │ │ │ ├── IResultWriter.cs │ │ │ ├── MultiStreamEventFilter.cs │ │ │ ├── MultiStreamEventReader.cs │ │ │ ├── MultiStreamMultiOutputCheckpointManager.cs │ │ │ ├── MultiStreamPositionTagger.cs │ │ │ ├── NoopCheckpointManager.cs │ │ │ ├── NoopResultEventEmitter.cs │ │ │ ├── NoopStatePartitionSelector.cs │ │ │ ├── NotAuthorizedWorkItem.cs │ │ │ ├── ParallelProcessingLoadBalancer.cs │ │ │ ├── ParallelQueryAllStreamsMasterReaderStrategy.cs │ │ │ ├── ParallelQueryMasterProjectionProcessingPhase.cs │ │ │ ├── ParallelQueryMasterReaderStrategy.cs │ │ │ ├── ParallelQueryProcessingStrategy.cs │ │ │ ├── PartitionCompletedWorkItem.cs │ │ │ ├── PartitionDeletedWorkItem.cs │ │ │ ├── PartitionState.cs │ │ │ ├── PartitionStateCache.cs │ │ │ ├── PartitionStateUpdateManager.cs │ │ │ ├── PhasePositionTagger.cs │ │ │ ├── PositionTagger.cs │ │ │ ├── PositionTracker.cs │ │ │ ├── PreTaggedPositionTagger.cs │ │ │ ├── PrepareInfo.cs │ │ │ ├── PreparePositionTagger.cs │ │ │ ├── ProcessingStrategySelector.cs │ │ │ ├── ProgressWorkItem.cs │ │ │ ├── ProjectionCheckpoint.cs │ │ │ ├── ProjectionCoreService.cs │ │ │ ├── ProjectionCoreServiceCommandReader.cs │ │ │ ├── ProjectionNamesBuilder.cs │ │ │ ├── ProjectionOutputConfig.cs │ │ │ ├── ProjectionProcessingStrategy.cs │ │ │ ├── ProjectionSourceDefinition.cs │ │ │ ├── ProjectionVersion.cs │ │ │ ├── QueryProcessingStrategy.cs │ │ │ ├── QueuedEmittedStreamsWriter.cs │ │ │ ├── ReaderStrategy.cs │ │ │ ├── ReaderSubscription.cs │ │ │ ├── ReaderSubscriptionBase.cs │ │ │ ├── ReaderSubscriptionOptions.cs │ │ │ ├── RequestResponseQueueForwarder.cs │ │ │ ├── ResolvedEvent.cs │ │ │ ├── ResultEventEmitter.cs │ │ │ ├── ResultWriter.cs │ │ │ ├── SlaveQueryProcessingStrategy.cs │ │ │ ├── SlaveResultWriter.cs │ │ │ ├── SourceDefinitionBuilder.cs │ │ │ ├── SpoolStreamProcessingWorkItem.cs │ │ │ ├── StagedProcessingQueue.cs │ │ │ ├── StatePartitionSelector.cs │ │ │ ├── StreamEventFilter.cs │ │ │ ├── StreamEventReader.cs │ │ │ ├── StreamPositionTagger.cs │ │ │ ├── TaggedResolvedEvent.cs │ │ │ ├── TransactionFileEventFilter.cs │ │ │ ├── TransactionFileEventReader.cs │ │ │ ├── TransactionFilePositionTagger.cs │ │ │ ├── WorkItem.cs │ │ │ ├── WorkLoadEstimationStrategy.cs │ │ │ ├── WriteQueryEofProjectionProcessingPhase.cs │ │ │ ├── WriteQueryResultProjectionProcessingPhase.cs │ │ │ └── WriteQueryResultProjectionProcessingPhaseBase.cs │ │ ├── ProjectionConfig.cs │ │ ├── ProjectionMode.cs │ │ ├── ProjectionStatistics.cs │ │ ├── PublishSubscribeDispatcher.cs │ │ ├── ReadWrite.cs │ │ ├── ReaderSubscriptionDispatcher.cs │ │ ├── SystemNames.cs │ │ └── v8 │ │ │ ├── DefaultV8ProjectionStateHandler.cs │ │ │ └── V8ProjectionStateHandler.cs │ ├── Standard │ │ ├── ByCorrelationId.cs │ │ ├── CategorizeEventsByStreamPath.cs │ │ ├── CategorizeStreamByPath.cs │ │ ├── IndexEventsByEventType.cs │ │ ├── IndexStreams.cs │ │ ├── StreamCategoryExtractor.cs │ │ ├── StreamCategoryExtractorByFirstSeparator.cs │ │ ├── StreamCategoryExtractorByLastSeparator.cs │ │ ├── StreamDeletedHelper.cs │ │ └── StubHandler.cs │ ├── Utils │ │ ├── EncodingExtensions.cs │ │ ├── EnumExtensions.cs │ │ └── Logging.cs │ └── v8 │ │ ├── CompiledScript.cs │ │ ├── Js1Exception.cs │ │ ├── PreludeScript.cs │ │ ├── QueryScript.cs │ │ └── js1.cs ├── EventStore.Projections.v8Integration │ ├── CompiledScript.cpp │ ├── CompiledScript.h │ ├── EventHandler.cpp │ ├── EventHandler.h │ ├── EventStore.Projections.v8Integration.rc │ ├── EventStore.Projections.v8Integration.sln │ ├── EventStore.Projections.v8Integration.vcxproj │ ├── ModuleScript.cpp │ ├── ModuleScript.h │ ├── PreludeScript.cpp │ ├── PreludeScript.h │ ├── QueryScript.cpp │ ├── QueryScript.h │ ├── V8Wrapper.cpp │ ├── V8Wrapper.h │ ├── defines.h │ ├── dllmain.cpp │ ├── js1.cpp │ ├── js1.h │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EventStore.Rags.Tests │ ├── CommandLineTests │ │ ├── when_a_shorthand_argument_is_parsed.cs │ │ ├── when_an_argument_parsed_exists.cs │ │ └── when_no_arguments_is_parsed.cs │ ├── EnvironmentTests │ │ ├── when_environment_variable_is_parsed.cs │ │ └── when_referenced_environment_variable_is_parsed.cs │ ├── EventStore.Rags.Tests.csproj │ ├── ExtensionsTests │ │ ├── NormalizeTests │ │ │ └── when_normalizing.cs │ │ └── UseAliasesTests │ │ │ └── when_using_aliases.cs │ ├── OptionApplicatorTests │ │ └── when_option_applicator_get.cs │ ├── TestType.cs │ ├── YamlTests │ │ ├── config_with_section_and_dictionary.yaml │ │ ├── valid_config.yaml │ │ ├── when_config_is_parsed.cs │ │ └── when_config_is_parsed_with_section_and_dictionary.cs │ └── run.cmd ├── EventStore.Rags │ ├── ArgAliasAttribute.cs │ ├── ArgDescriptionAttribute.cs │ ├── ArgReviverAttribute.cs │ ├── ArgShortcut.cs │ ├── ArgShortcutPolicy.cs │ ├── ArgUsage.cs │ ├── CommandLine.cs │ ├── ConsoleString.cs │ ├── EnvironmentVariables.cs │ ├── EventStore.Rags.csproj │ ├── Exceptions.cs │ ├── Extensions.cs │ ├── NameTranslators.cs │ ├── OptionApplicator.cs │ ├── OptionException.cs │ ├── OptionSource.cs │ ├── Translators.cs │ ├── TypeDefaultOptions.cs │ ├── TypeMap.cs │ └── Yaml.cs ├── EventStore.TestClient │ ├── App.config │ ├── Client.cs │ ├── ClientApiLoggerBridge.cs │ ├── ClientOptions.cs │ ├── CommandProcessorContext.cs │ ├── Commands │ │ ├── DeleteProcessor.cs │ │ ├── DvuBasic │ │ │ ├── BankAccountBasicProducer.cs │ │ │ ├── BankAccountEventFactory.cs │ │ │ ├── DvuBasicProcessor.cs │ │ │ ├── IBasicProducer.cs │ │ │ ├── Status.cs │ │ │ └── StreamNamesGenerator.cs │ │ ├── ExitProcessor.cs │ │ ├── MultiWriteFloodWaiting.cs │ │ ├── MultiWriteProcessor.cs │ │ ├── PingFloodProcessor.cs │ │ ├── PingFloodWaitingProcessor.cs │ │ ├── PingProcessor.cs │ │ ├── ReadAllProcessor.cs │ │ ├── ReadFloodProcessor.cs │ │ ├── ReadProcessor.cs │ │ ├── RequestMonitor.cs │ │ ├── RunTestScenarios │ │ │ ├── BankAccountEvent.cs │ │ │ ├── IScenario.cs │ │ │ ├── JsonEventContainer.cs │ │ │ ├── LoopingProjTranWriteScenario.cs │ │ │ ├── LoopingProjectionKillScenario.cs │ │ │ ├── LoopingScenario.cs │ │ │ ├── MassProjectionsScenario.cs │ │ │ ├── NodeConnectionInfo.cs │ │ │ ├── ProjForeachForcedCommonNameScenario.cs │ │ │ ├── ProjectionWrongTagCheck.cs │ │ │ ├── ProjectionsKillScenario.cs │ │ │ ├── ProjectionsScenarioBase.cs │ │ │ ├── ScenarioBase.cs │ │ │ ├── TestEvent.cs │ │ │ └── WriteMode.cs │ │ ├── RunTestScenariosProcessor.cs │ │ ├── ScavengeProcessor.cs │ │ ├── SubscribeToStreamProcessor.cs │ │ ├── SubscriptionStressTestProcessor.cs │ │ ├── TcpSanitazationCheckProcessor.cs │ │ ├── TransactionWriteProcessor.cs │ │ ├── UsageProcessor.cs │ │ ├── WriteFloodClientApiProcessor.cs │ │ ├── WriteFloodProcessor.cs │ │ ├── WriteFloodWaitingProcessor.cs │ │ ├── WriteJsonProcessor.cs │ │ ├── WriteLongTermProcessor.cs │ │ └── WriteProcessor.cs │ ├── CommandsProcessor.cs │ ├── ConsoleTable.cs │ ├── EventStore.TestClient.csproj │ ├── ICmdProcessor.cs │ ├── PerfUtils.cs │ ├── PortsHelper.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── project.json ├── EventStore.Transport.Http │ ├── AsyncQueuedBufferWriter.cs │ ├── AsyncStreamCopier.cs │ ├── Atom │ │ ├── AtomExceptions.cs │ │ ├── AtomSpecs.cs │ │ ├── Feed.cs │ │ └── ServiceDocument.cs │ ├── Client │ │ ├── ClientOperationState.cs │ │ ├── HttpAsyncClient.cs │ │ └── IHttpClient.cs │ ├── Codecs │ │ ├── Codec.cs │ │ ├── CustomCodec.cs │ │ ├── JsonCodec.cs │ │ ├── ManualEncoding.cs │ │ ├── NoCodec.cs │ │ ├── TextCodec.cs │ │ └── XmlCodec.cs │ ├── CompressionAlgorithms.cs │ ├── ContentType.cs │ ├── EntityManagement │ │ ├── HttpEntity.cs │ │ ├── HttpEntityManager.cs │ │ ├── HttpEntityManagerExtensions.cs │ │ └── ManagerOperationState.cs │ ├── EventStore.Transport.Http.csproj │ ├── HttpMethod.cs │ ├── HttpResponse.cs │ ├── HttpStatusCode.cs │ ├── ICodec.cs │ ├── IOStreams.cs │ ├── Internal │ │ ├── LoggingExtensions.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ ├── MediaType.cs │ ├── ProxyHeaders.cs │ ├── Server │ │ └── HttpAsyncServer.cs │ └── WebRequestExtensions.cs ├── EventStore.Transport.Tcp │ ├── ClosedConnectionException.cs │ ├── Disassociated.cs │ ├── DotNettyClientTransport.cs │ ├── DotNettyConnection.Monitored.cs │ ├── DotNettyConnection.cs │ ├── DotNettyServerTransport.cs │ ├── DotNettyTransport.cs │ ├── DotNettyTransportSettings.cs │ ├── EventStore.Transport.Tcp.csproj │ ├── Handlers │ │ ├── CommonHandlers.cs │ │ ├── TcpClientHandler.cs │ │ ├── TcpHandlers.cs │ │ └── TcpServerHandler.cs │ ├── Helper.cs │ ├── IIConnectionEventListener.cs │ ├── IMonitoredTcpConnection.cs │ ├── ITcpConnection.cs │ ├── ITcpPackageListener.cs │ ├── InboundConnection.cs │ ├── Internal │ │ ├── LoggingExtensions.cs │ │ ├── SR.cs │ │ ├── Strings.Designer.cs │ │ ├── Strings.resx │ │ ├── ThrowHelper.Extensions.cs │ │ └── ThrowHelper.cs │ ├── InvalidConnectionException.cs │ ├── PackageFramingException.cs │ ├── TcpConnectionMonitor.cs │ └── TcpStats.cs ├── NLog.config ├── NLogValueFormatter.cs ├── Protos │ └── ClientAPI │ │ └── ClientMessageDtos.proto ├── Scripts │ └── projections │ │ ├── check-ce.sh │ │ ├── check2.sh │ │ ├── create-account-foreach.sh │ │ ├── create-account-foreach1.sh │ │ ├── create-account-foreach2.sh │ │ ├── create-event-index.sh │ │ ├── create-streamer-projection.sh │ │ ├── forall-foreach.sh │ │ ├── gen-ce.sh │ │ ├── test1.sh │ │ └── test2.sh ├── app.config ├── app.ico ├── app2.ico ├── libs │ └── x64 │ │ ├── linux │ │ └── libjs1.so │ │ ├── mac │ │ └── libjs1.dylib │ │ └── win │ │ ├── js1.dll │ │ └── js1.pdb ├── nuget.client.props └── version.client.props ├── test ├── Directory.Build.props ├── EventStore.ClientAPI.Benchmarks │ ├── EventStore.ClientAPI.Benchmarks.csproj │ ├── MatchHandlerBenchmark.cs │ └── Program.cs ├── EventStore.ClientAPI.Tests │ ├── AutoSubscribing │ │ └── ConsumerExpressionBuilderTests.cs │ ├── EventStore.ClientAPI.Tests.csproj │ ├── HandlerCollectionTests.cs │ ├── Internals │ │ ├── AkkaAssertEqualityComparer.cs │ │ ├── AkkaAssertEqualityComparerAdapter.cs │ │ ├── AkkaEqualException.cs │ │ ├── XAssert.cs │ │ └── XunitAssertions.cs │ ├── SerializationManagerTest.cs │ ├── SimpleMatchBuilderTests.cs │ ├── StreamMetadataAttributeTest.cs │ ├── TestEvents.cs │ └── run.cmd └── NLog.config └── version.props /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/.gitmodules -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /DotnetCLIVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.401 -------------------------------------------------------------------------------- /EasyEventStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/EasyEventStore.sln -------------------------------------------------------------------------------- /Ensure-DotNetSdk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/Ensure-DotNetSdk.cmd -------------------------------------------------------------------------------- /EventStore.CrossPlatform.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/EventStore.CrossPlatform.sln -------------------------------------------------------------------------------- /EventStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/EventStore.sln -------------------------------------------------------------------------------- /Issue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/Issue.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/README.md -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/ap-build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/ci/ap-build-linux.sh -------------------------------------------------------------------------------- /ci/ap-setup-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/ci/ap-setup-osx.sh -------------------------------------------------------------------------------- /ci/ap-test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/ci/ap-test-linux.sh -------------------------------------------------------------------------------- /ci/build/StrongKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/ci/build/StrongKey.snk -------------------------------------------------------------------------------- /clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/clean.cmd -------------------------------------------------------------------------------- /etc/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/Directory.Build.props -------------------------------------------------------------------------------- /etc/EventStore.Documentation/DocumentGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.Documentation/DocumentGenerator.cs -------------------------------------------------------------------------------- /etc/EventStore.Documentation/DocumentationGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.Documentation/DocumentationGeneration.cs -------------------------------------------------------------------------------- /etc/EventStore.Documentation/EventStore.Documentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.Documentation/EventStore.Documentation.csproj -------------------------------------------------------------------------------- /etc/EventStore.Documentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.Documentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /etc/EventStore.Rags.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.Rags.sln -------------------------------------------------------------------------------- /etc/EventStore.RagsPlayground/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.RagsPlayground/App.config -------------------------------------------------------------------------------- /etc/EventStore.RagsPlayground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.RagsPlayground/Program.cs -------------------------------------------------------------------------------- /etc/EventStore.RagsPlayground/RagsPlayground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.RagsPlayground/RagsPlayground.csproj -------------------------------------------------------------------------------- /etc/EventStore.UpgradeProjections/.gitignore: -------------------------------------------------------------------------------- 1 | packages/ 2 | -------------------------------------------------------------------------------- /etc/EventStore.UpgradeProjections/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.UpgradeProjections/App.config -------------------------------------------------------------------------------- /etc/EventStore.UpgradeProjections/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.UpgradeProjections/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /etc/EventStore.UpgradeProjections/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.UpgradeProjections/README.txt -------------------------------------------------------------------------------- /etc/EventStore.UpgradeProjections/UpgradeProjections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/EventStore.UpgradeProjections/UpgradeProjections.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/HistogramEncoderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/HistogramEncoderV2.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/IEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/IEncoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/IHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/IHeader.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/IRecordedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/IRecordedData.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/RecordedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/RecordedData.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/V0Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/V0Header.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Encoding/V1Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Encoding/V1Header.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HdrHistogram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HdrHistogram.csproj -------------------------------------------------------------------------------- /etc/HdrHistogram/Histogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Histogram.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HistogramBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HistogramBase.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HistogramEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HistogramEncoding.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HistogramExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HistogramExtensions.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HistogramFactoryDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HistogramFactoryDelegate.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HistogramLogReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HistogramLogReader.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/HistogramLogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/HistogramLogWriter.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/IHistogramLogV1Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/IHistogramLogV1Reader.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/IRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/IRecorder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/IntConcurrentHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/IntConcurrentHistogram.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/IntHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/IntHistogram.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/AbstractHistogramEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/AbstractHistogramEnumerator.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/AllValueEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/AllValueEnumerable.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/AllValuesEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/AllValuesEnumerator.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/HistogramIterationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/HistogramIterationValue.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/PercentileEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/PercentileEnumerable.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/PercentileEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/PercentileEnumerator.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/RecordedValuesEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/RecordedValuesEnumerable.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Iteration/RecordedValuesEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Iteration/RecordedValuesEnumerator.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/LongConcurrentHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/LongConcurrentHistogram.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/LongHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/LongHistogram.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Output/CsvOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Output/CsvOutputFormatter.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Output/HgrmOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Output/HgrmOutputFormatter.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Output/IOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Output/IOutputFormatter.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/OutputScalingFactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/OutputScalingFactor.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/CountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/CountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/ICountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/ICountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/IntCountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/IntCountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/LongCountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/LongCountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/ShortCountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/ShortCountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/SimpleCountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/SimpleCountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Persistence/V2MaxWordSizeCountsDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Persistence/V2MaxWordSizeCountsDecoder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Recorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Recorder.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/ShortHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/ShortHistogram.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/TimeStamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/TimeStamp.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/ArrayExtensions.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/AtomicIntArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/AtomicIntArray.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/AtomicLongArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/AtomicLongArray.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/Bitwise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/Bitwise.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/ByteBuffer.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/ByteBufferExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/ByteBufferExtensions.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/TypeHelper.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/UnixTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/UnixTimeExtensions.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/Utilities/WriterReaderPhaser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/Utilities/WriterReaderPhaser.cs -------------------------------------------------------------------------------- /etc/HdrHistogram/ZigZagEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/HdrHistogram/ZigZagEncoding.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/README.md -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplate.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateHelpers.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateMatch.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateMatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateMatchException.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplatePartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplatePartType.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplatePathSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplatePathSegment.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateQueryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateQueryValue.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateTable.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateTrieLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateTrieLocation.cs -------------------------------------------------------------------------------- /etc/SimpleSyndicate.UriTemplate/UriTemplateTrieNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/SimpleSyndicate.UriTemplate/UriTemplateTrieNode.cs -------------------------------------------------------------------------------- /etc/eventstore-utils.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/eventstore-utils.sln -------------------------------------------------------------------------------- /etc/nuget.hdr.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/nuget.hdr.props -------------------------------------------------------------------------------- /etc/nuget.uri.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/nuget.uri.props -------------------------------------------------------------------------------- /etc/version.hdr.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/version.hdr.props -------------------------------------------------------------------------------- /etc/version.uri.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/etc/version.uri.props -------------------------------------------------------------------------------- /gitgc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/gitgc.cmd -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/global.json -------------------------------------------------------------------------------- /init-tools.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/init-tools.cmd -------------------------------------------------------------------------------- /nuget.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/nuget.props -------------------------------------------------------------------------------- /nuspecs/Google.V8.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/nuspecs/Google.V8.nuspec -------------------------------------------------------------------------------- /nuspecs/Publish/EventStore.GoogleV8.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/nuspecs/Publish/EventStore.GoogleV8.5.0.0.nupkg -------------------------------------------------------------------------------- /nuspecs/pack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/nuspecs/pack.cmd -------------------------------------------------------------------------------- /publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/publish.cmd -------------------------------------------------------------------------------- /restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/restore.cmd -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Directory.Build.props -------------------------------------------------------------------------------- /samples/ES.Producer/ES.Producer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/ES.Producer/ES.Producer.csproj -------------------------------------------------------------------------------- /samples/ES.Producer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/ES.Producer/Program.cs -------------------------------------------------------------------------------- /samples/Es.ConsumerA/Es.ConsumerA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.ConsumerA/Es.ConsumerA.csproj -------------------------------------------------------------------------------- /samples/Es.ConsumerA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.ConsumerA/Program.cs -------------------------------------------------------------------------------- /samples/Es.ConsumerB/Es.ConsumerB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.ConsumerB/Es.ConsumerB.csproj -------------------------------------------------------------------------------- /samples/Es.ConsumerB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.ConsumerB/Program.cs -------------------------------------------------------------------------------- /samples/Es.ConsumerB/StreamConsumers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.ConsumerB/StreamConsumers.cs -------------------------------------------------------------------------------- /samples/Es.Receiver/Es.Receiver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.Receiver/Es.Receiver.csproj -------------------------------------------------------------------------------- /samples/Es.Receiver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.Receiver/Program.cs -------------------------------------------------------------------------------- /samples/Es.SharedModels/Es.SharedModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.SharedModels/Es.SharedModels.csproj -------------------------------------------------------------------------------- /samples/Es.SharedModels/TestEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/samples/Es.SharedModels/TestEvents.cs -------------------------------------------------------------------------------- /scripts/build-js1/build-js1-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/build-js1/build-js1-linux/Dockerfile -------------------------------------------------------------------------------- /scripts/build-js1/build-js1-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/build-js1/build-js1-linux/README.md -------------------------------------------------------------------------------- /scripts/build-js1/build-js1-mac/build-js1-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/build-js1/build-js1-mac/build-js1-mac.sh -------------------------------------------------------------------------------- /scripts/nuget-clientapi/EventStore.Client.Embedded.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/nuget-clientapi/EventStore.Client.Embedded.nuspec -------------------------------------------------------------------------------- /scripts/nuget-clientapi/EventStore.Client.Embedded.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/nuget-clientapi/EventStore.Client.Embedded.targets -------------------------------------------------------------------------------- /scripts/nuget-clientapi/EventStore.Client.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/nuget-clientapi/EventStore.Client.nuspec -------------------------------------------------------------------------------- /scripts/nuget-clientapi/package-clientapi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/nuget-clientapi/package-clientapi.ps1 -------------------------------------------------------------------------------- /scripts/opts-doc-gen/generate-documentation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/opts-doc-gen/generate-documentation.ps1 -------------------------------------------------------------------------------- /scripts/opts-doc-gen/generate-documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/opts-doc-gen/generate-documentation.sh -------------------------------------------------------------------------------- /scripts/protogen/generate-clientmessages-from-proto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/protogen/generate-clientmessages-from-proto.ps1 -------------------------------------------------------------------------------- /scripts/protogen/generate-clientmessages-from-proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/scripts/protogen/generate-clientmessages-from-proto.sh -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/EventStore.BufferManagement.Tests/BufferManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.BufferManagement.Tests/BufferManagerTests.cs -------------------------------------------------------------------------------- /src/EventStore.BufferManagement.Tests/BufferPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.BufferManagement.Tests/BufferPoolTests.cs -------------------------------------------------------------------------------- /src/EventStore.BufferManagement.Tests/run.cmd: -------------------------------------------------------------------------------- 1 | dotnet test -- RunConfiguration.TargetPlatform=x64 -------------------------------------------------------------------------------- /src/EventStore.BufferManagement/BufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.BufferManagement/BufferManager.cs -------------------------------------------------------------------------------- /src/EventStore.BufferManagement/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.BufferManagement/BufferPool.cs -------------------------------------------------------------------------------- /src/EventStore.BufferManagement/BufferPoolStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.BufferManagement/BufferPoolStream.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/AllCheckpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/AllCheckpoint.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/AllEventsSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/AllEventsSlice.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ClientApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ClientApiConstants.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ClusterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ClusterSettings.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/Common/SystemNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/Common/SystemNames.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ConfigUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ConfigUtils.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ConnectingPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ConnectingPhase.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ConnectionSettings.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ConnectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ConnectionState.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/DeleteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/DeleteResult.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/EventData.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/EventReadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/EventReadResult.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/EventReadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/EventReadStatus.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ExpectedVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ExpectedVersion.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/GossipSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/GossipSeed.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IEndPointDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IEndPointDiscoverer.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IEventAdapter.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IEventDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IEventDescriptor.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IEventMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IEventMetadata.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IFullEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IFullEvent.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IHandlerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IHandlerCollection.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IRecordedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IRecordedEvent.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IResolvedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IResolvedEvent.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IStreamCheckpointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IStreamCheckpointer.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/IStreamEventsSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/IStreamEventsSlice.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/Internal/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/Internal/Consts.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/NodeEndPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/NodeEndPoints.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/NodePreference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/NodePreference.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/Position.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ReadDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ReadDirection.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/RecordedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/RecordedEvent.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/ResolvedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/ResolvedEvent.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/SliceReadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/SliceReadStatus.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/StreamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/StreamAttribute.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/StreamCheckpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/StreamCheckpoint.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/StreamEventsSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/StreamEventsSlice.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/StreamPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/StreamPosition.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Abstractions/WriteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Abstractions/WriteResult.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Consumer/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Consumer/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Consumer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Consumer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Embedded/EmbeddedResponders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Embedded/EmbeddedResponders.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Embedded/EmbeddedSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Embedded/EmbeddedSubscriber.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Embedded/EmbeddedSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Embedded/EmbeddedSubscription.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Embedded/EmbeddedVNodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Embedded/EmbeddedVNodeBuilder.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI.Embedded/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI.Embedded/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/ClientClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/ClientClosedEventArgs.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/ClientConnectionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/ClientConnectionEventArgs.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/ClientErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/ClientErrorEventArgs.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/ClientReconnectingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/ClientReconnectingEventArgs.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Common/Utils/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Common/Utils/Helper.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Common/Utils/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Common/Utils/Json.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/ConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/ConnectionString.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/DefaultEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/DefaultEventAdapter.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/DefaultHandlerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/DefaultHandlerCollection.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/EventManager.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/EventStore.ClientAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/EventStore.ClientAPI.csproj -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/EventStoreCatchUpSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/EventStoreCatchUpSubscription.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/EventStoreConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/EventStoreConnection.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/EventStoreSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/EventStoreSubscription.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/EventStoreTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/EventStoreTransaction.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Exceptions/ClusterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Exceptions/ClusterException.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Exceptions/NoResultException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Exceptions/NoResultException.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/IEventStoreBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/IEventStoreBus.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/IEventStoreConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/IEventStoreConnection.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/IEventStoreConnection2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/IEventStoreConnection2.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/IEventStoreConnectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/IEventStoreConnectionBase.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/CompositeDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/CompositeDisposable.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/DefaultFullEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/DefaultFullEvent.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/Empty.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/EventMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/EventMetadata.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/IPEndPointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/IPEndPointExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/Messages.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/OperationsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/OperationsManager.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/SimpleQueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/SimpleQueuedHandler.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/SubscriptionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/SubscriptionsManager.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Messages/ClusterMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Messages/ClusterMessages.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Projections/ProjectionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Projections/ProjectionConfig.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Projections/ProjectionDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Projections/ProjectionDetails.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Projections/ProjectionsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Projections/ProjectionsClient.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Projections/QueryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Projections/QueryManager.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/StreamAcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/StreamAcl.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/StreamMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/StreamMetadata.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/StreamMetadataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/StreamMetadataBuilder.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/StreamMetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/StreamMetadataExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/StreamMetadataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/StreamMetadataResult.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/SystemData/InspectionDecision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/SystemData/InspectionDecision.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/SystemData/InspectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/SystemData/InspectionResult.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/SystemData/StatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/SystemData/StatusCode.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/SystemSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/SystemSettings.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Transport.Http/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Transport.Http/ContentType.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Transport.Http/HttpMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Transport.Http/HttpMethod.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/Transport.Http/HttpStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/Transport.Http/HttpStatusCode.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/UserManagement/RelLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/UserManagement/RelLink.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/UserManagement/UserDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/UserManagement/UserDetails.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/UserManagement/UsersClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/UserManagement/UsersClient.cs -------------------------------------------------------------------------------- /src/EventStore.ClientAPI/UserManagement/UsersManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClientAPI/UserManagement/UsersManager.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.DotNetCore/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.DotNetCore/App.config -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.DotNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.DotNetCore/Program.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.DotNetCore/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.DotNetCore/clean.bat -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.Services/EventStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.Services/EventStoreService.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.Services/IEventStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.Services/IEventStoreService.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.Web/clusternode-web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.Web/clusternode-web/index.html -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.WindowsServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.WindowsServices/App.config -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.WindowsServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.WindowsServices/Program.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.WindowsServices/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.WindowsServices/clean.bat -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.WindowsServices/win.bat: -------------------------------------------------------------------------------- 1 | cmd -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.WindowsServices/winsvcreg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.WindowsServices/winsvcreg.cmd -------------------------------------------------------------------------------- /src/EventStore.ClusterNode.WindowsServices/winsvcstop.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode.WindowsServices/winsvcstop.cmd -------------------------------------------------------------------------------- /src/EventStore.ClusterNode/ClusterNodeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode/ClusterNodeOptions.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode/ClusterVNodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode/ClusterVNodeBuilder.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode/EventStore.ClusterNode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode/EventStore.ClusterNode.csproj -------------------------------------------------------------------------------- /src/EventStore.ClusterNode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode/Program.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.ClusterNode/app2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.ClusterNode/app2.ico -------------------------------------------------------------------------------- /src/EventStore.Common.Utils.Sources/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common.Utils.Sources/Ensure.cs -------------------------------------------------------------------------------- /src/EventStore.Common.Utils/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common.Utils/Runtime.cs -------------------------------------------------------------------------------- /src/EventStore.Common/EventStore.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/EventStore.Common.csproj -------------------------------------------------------------------------------- /src/EventStore.Common/Internal/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Internal/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Internal/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Internal/Strings.Designer.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.Common/Internal/ThrowHelper.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Internal/ThrowHelper.Extensions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Options/EventStoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Options/EventStoreOptions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Options/IOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Options/IOptions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Options/ProjectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Options/ProjectionType.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Properties/JetbrainsAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Properties/JetbrainsAnnotations.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/Application.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/BooleanTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/BooleanTypeConverter.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/BytesFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/BytesFormatter.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/Empty.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/EndpointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/EndpointExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/FileStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/FileStreamExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/Helper.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/HostName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/HostName.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/IPAddressConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/IPAddressConverter.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/IPEndPointArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/IPEndPointArrayConverter.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/IPEndPointComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/IPEndPointComparer.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/IPEndpointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/IPEndpointConverter.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/IPFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/IPFinder.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/Json.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/Locations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/Locations.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/OS.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/Platforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/Platforms.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/ShellExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/ShellExecutor.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/StringExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Common/Utils/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Common/Utils/VersionInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Messages/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Messages/OperationResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Messages/TcpClientMessageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Messages/TcpClientMessageDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Messages/TcpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Messages/TcpCommand.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Messages/TcpPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Messages/TcpPackage.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/AssertEx.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/AwakeService/when_creating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/AwakeService/when_creating.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/FSMSpeedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/FSMSpeedTest.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/BusTestMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/BusTestMessages.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/Messages.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/NoopConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/NoopConsumer.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/TestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/TestHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/TestMultiHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/TestMultiHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/TimeoutHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/TimeoutHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/Helpers/WaitingConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/Helpers/WaitingConsumer.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/QueueSpeedTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/QueueSpeedTest.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/queued_handler_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/queued_handler_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Bus/when_consumer_throws.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Bus/when_consumer_throws.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/Helpers/TcpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/Helpers/TcpType.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/Helpers/TestEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/Helpers/TestEvent.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/Helpers/Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/Helpers/Writer.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/append_to_stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/append_to_stream.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/connect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/connect.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/connection_string.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/connection_string.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/deleting_stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/deleting_stream.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/read_event_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/read_event_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/soft_delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/soft_delete.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/subscribe_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/subscribe_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/ClientAPI/transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/ClientAPI/transaction.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/CountdownEventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/CountdownEventExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/DefaultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/DefaultData.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/EventStore.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/EventStore.Core.Tests.csproj -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Fakes/FakeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Fakes/FakeLogger.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Fakes/FakePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Fakes/FakePublisher.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Fakes/FakeTfReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Fakes/FakeTfReader.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Fakes/NoopPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Fakes/NoopPublisher.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Hashes/MD5HashTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Hashes/MD5HashTests.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Hashes/SMHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Hashes/SMHasher.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Hashes/murmur2_hash_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Hashes/murmur2_hash_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Hashes/murmur3a_hash_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Hashes/murmur3a_hash_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Hashes/xxhash_hash_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Hashes/xxhash_hash_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/HelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/HelperExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/ManualQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/ManualQueue.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/MiniClusterNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/MiniClusterNode.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/MiniNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/MiniNode.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/PortsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/PortsHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/ReflectionDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/ReflectionDynamic.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Helpers/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Helpers/TestHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Streams/SetUpFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Streams/SetUpFixture.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Streams/basic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Streams/basic.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Streams/feed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Streams/feed.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Streams/idempotency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Streams/idempotency.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Streams/metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Streams/metadata.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/TestController.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/TestSuiteMarkerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/TestSuiteMarkerBase.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Users/StreamHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Users/StreamHelpers.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Http/Users/users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Http/Users/users.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/FakeFilenameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/FakeFilenameProvider.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/FakeIndexHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/FakeIndexHasher.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/FakeIndexReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/FakeIndexReader.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/IndexEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/IndexEntryTests.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/IndexMapTestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/IndexMapTestFactory.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/IndexV1/ptable_should.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/IndexV1/ptable_should.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/MemTableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/MemTableTests.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Index/ReverseComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Index/ReverseComparerTests.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Logging/EsLoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Logging/EsLoggerExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Resources/es-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Resources/es-tile.png -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/Services/Transport/Tcp/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/Services/Transport/Tcp/Utils.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/SpecificationWithDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/SpecificationWithDirectory.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/SpecificationWithFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/SpecificationWithFile.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TestConfigs/invalid_format_config.yaml: -------------------------------------------------------------------------------- 1 | Log: ~/logDirectoryFromConfigFile 2 | HttpPort: invalid -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TestConfigs/test_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/TestConfigs/test_config.yaml -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TestConfigs/test_config_with_incorrectly_cased_option.yaml: -------------------------------------------------------------------------------- 1 | log: ~/gesLogs 2 | runProjections: all -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TestConfigs/test_config_with_unknown_option.yaml: -------------------------------------------------------------------------------- 1 | UnknownOption: true -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TestsInitFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/TestsInitFixture.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TransactionLog/FakeReadIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/TransactionLog/FakeReadIndex.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/TransactionLog/TFChunkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/TransactionLog/TFChunkHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/VerifyIntPtrSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/VerifyIntPtrSize.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/copying_metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/copying_metadata.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/mono_filestream_bug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/mono_filestream_bug.cs -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/run.cmd: -------------------------------------------------------------------------------- 1 | dotnet test -- RunConfiguration.TargetPlatform=x64 -------------------------------------------------------------------------------- /src/EventStore.Core.Tests/server.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core.Tests/server.p12 -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/AdHocHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/AdHocHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/HandleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/HandleExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/IBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/IBus.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/IHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/IHandle.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/IMonitoredQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/IMonitoredQueue.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/IPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/IPublisher.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/IQueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/IQueuedHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/ISingleConsumerMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/ISingleConsumerMessageQueue.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/ISubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/ISubscriber.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/InMemoryBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/InMemoryBus.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/MPSCMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/MPSCMessageQueue.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/MessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/MessageHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/MultiQueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/MultiQueuedHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/NarrowingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/NarrowingHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueueBatchDequeueResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueueBatchDequeueResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueueMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueueMonitor.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueueStatsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueueStatsCollector.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerAutoReset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerAutoReset.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerAutoResetWithMPSC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerAutoResetWithMPSC.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerMRES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerMRES.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerMRESWithMPSC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerMRESWithMPSC.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerPulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerPulse.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerSleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerSleep.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/QueuedHandlerThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/QueuedHandlerThreadPool.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/SPSCMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/SPSCMessageQueue.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Bus/WideningHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Bus/WideningHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Cluster/ClusterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Cluster/ClusterInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Cluster/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Cluster/MemberInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Cluster/Settings/ClusterConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Cluster/Settings/ClusterConsts.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Cluster/VNodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Cluster/VNodeInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/ClusterNodeMutex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/ClusterNodeMutex.cs -------------------------------------------------------------------------------- /src/EventStore.Core/ClusterVNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/ClusterVNode.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Consts.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/CommitEventRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/CommitEventRecord.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/Epoch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/Epoch.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/Event.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/EventNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/EventNumber.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/EventRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/EventRecord.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/ExpectedVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/ExpectedVersion.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/GossipAdvertiseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/GossipAdvertiseInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/LowerUpper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/LowerUpper.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/ReadAllResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/ReadAllResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/ReadEventResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/ReadEventResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/ReadStreamResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/ReadStreamResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/ResolvedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/ResolvedEvent.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/StreamAcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/StreamAcl.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/StreamMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/StreamMetadata.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/SystemSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/SystemSettings.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/TFPos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/TFPos.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/UserData.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/VNodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/VNodeInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Data/VNodeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Data/VNodeState.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/BloomFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/BloomFilter.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/BoundedQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/BoundedQueue.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/ILRUCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/ILRUCache.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/LRUCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/LRUCache.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/NoLRUCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/NoLRUCache.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/ObjectPool.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/PairingHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/PairingHeap.cs -------------------------------------------------------------------------------- /src/EventStore.Core/DataStructures/StickyLRUCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/DataStructures/StickyLRUCache.cs -------------------------------------------------------------------------------- /src/EventStore.Core/EventStore.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/EventStore.Core.csproj -------------------------------------------------------------------------------- /src/EventStore.Core/Exceptions/ChunkNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Exceptions/ChunkNotFoundException.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Exceptions/CorruptIndexException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Exceptions/CorruptIndexException.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Exceptions/HashValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Exceptions/HashValidationException.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Exceptions/InvalidFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Exceptions/InvalidFileException.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Exceptions/PTableNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Exceptions/PTableNotFoundException.cs -------------------------------------------------------------------------------- /src/EventStore.Core/ExclusiveDbLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/ExclusiveDbLock.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Helpers/IODispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Helpers/IODispatcher.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Helpers/IODispatcherAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Helpers/IODispatcherAsync.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Helpers/IODispatcherDelayedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Helpers/IODispatcherDelayedMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Helpers/LengthPrefixSuffixFramer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Helpers/LengthPrefixSuffixFramer.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Helpers/StreamVersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Helpers/StreamVersionConverter.cs -------------------------------------------------------------------------------- /src/EventStore.Core/ISubsystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/ISubsystem.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/GuidFilenameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/GuidFilenameProvider.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/HashListMemTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/HashListMemTable.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/Hashes/IHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/Hashes/IHasher.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/Hashes/Murmur2Unsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/Hashes/Murmur2Unsafe.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/Hashes/Murmur3AUnsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/Hashes/Murmur3AUnsafe.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/Hashes/XXHashUnsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/Hashes/XXHashUnsafe.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IIndexFilenameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IIndexFilenameProvider.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IIndexScavengerLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IIndexScavengerLog.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IMemTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IMemTable.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/ISearchTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/ISearchTable.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/ITableIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/ITableIndex.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IndexEntry.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IndexEntryV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IndexEntryV1.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IndexEntryV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IndexEntryV2.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IndexKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IndexKey.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/IndexMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/IndexMap.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/MergeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/MergeResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/PTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/PTable.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/PTableConstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/PTableConstruction.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/PTableFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/PTableFooter.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/PTableHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/PTableHeader.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/ScavengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/ScavengeResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/SortedListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/SortedListExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Index/TableIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Index/TableIndex.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/LoggingExtensions.Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/LoggingExtensions.Debug.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/LoggingExtensions.Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/LoggingExtensions.Error.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/LoggingExtensions.Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/LoggingExtensions.Trace.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/Strings.Designer.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/ThrowHelper.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/ThrowHelper.Extensions.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ClientMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ClientMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ClusterInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ClusterInfoDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ElectionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ElectionMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ElectionMessageDtos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ElectionMessageDtos.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/GossipMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/GossipMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/HttpClientMessageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/HttpClientMessageDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/HttpMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/HttpMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/IQueueAffineMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/IQueueAffineMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/MemberInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/MemberInfoDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/MergeIndexesResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/MergeIndexesResultDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/MonitoringMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/MonitoringMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ReplicationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ReplicationMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ReplicationMessageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ReplicationMessageDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/ScavengeResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/ScavengeResultDto.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/StorageMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/StorageMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/SubscriptionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/SubscriptionMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/SystemMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/SystemMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/TcpMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/TcpMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messages/UserManagementMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messages/UserManagementMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/CallbackEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/CallbackEnvelope.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/Forwarder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/Forwarder.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/IEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/IEnvelope.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/Message.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/NoopEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/NoopEnvelope.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/PublishEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/PublishEnvelope.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Messaging/SendToThisEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Messaging/SendToThisEnvelope.cs -------------------------------------------------------------------------------- /src/EventStore.Core/NodeSubsystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/NodeSubsystems.cs -------------------------------------------------------------------------------- /src/EventStore.Core/PluginModel/IAuthenticationPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/PluginModel/IAuthenticationPlugin.cs -------------------------------------------------------------------------------- /src/EventStore.Core/ProgramBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/ProgramBase.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/ElectionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/ElectionsService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Gossip/GossipServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Gossip/GossipServiceBase.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Gossip/GossipState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Gossip/GossipState.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Gossip/IGossipSeedSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Gossip/IGossipSeedSource.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Gossip/LoopbackDns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Gossip/LoopbackDns.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Gossip/NodeGossipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Gossip/NodeGossipService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/HttpSendService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/HttpSendService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Monitoring/Stats/DiskIo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Monitoring/Stats/DiskIo.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Monitoring/Stats/GcStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Monitoring/Stats/GcStats.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/RequestForwardingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/RequestForwardingService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Storage/StorageChaser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Storage/StorageChaser.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Storage/StorageScavenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Storage/StorageScavenger.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/SubscriptionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/SubscriptionsService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/SystemNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/SystemNames.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/TcpSendService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/TcpSendService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/TimerService/IScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/TimerService/IScheduler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/TimerService/ITimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/TimerService/ITimer.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/TimerService/RealTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/TimerService/RealTimer.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/TimerService/TimerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/TimerService/TimerMessage.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/TimerService/TimerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/TimerService/TimerService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Transport/Http/Configure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Transport/Http/Configure.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Transport/Http/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Transport/Http/Convert.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Transport/Http/Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Transport/Http/Format.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Transport/Http/UriRouters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Transport/Http/UriRouters.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/Transport/Tcp/TcpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/Transport/Tcp/TcpService.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/VNode/VNodeFSM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/VNode/VNodeFSM.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/VNode/VNodeFSMBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/VNode/VNodeFSMBuilder.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Services/VNode/VNodeFSMHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Services/VNode/VNodeFSMHandling.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Settings/ESConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Settings/ESConsts.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Settings/VNodeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Settings/VNodeSettings.cs -------------------------------------------------------------------------------- /src/EventStore.Core/StandardComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/StandardComponents.cs -------------------------------------------------------------------------------- /src/EventStore.Core/TransactionLog/Chunks/ChunkFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/TransactionLog/Chunks/ChunkFooter.cs -------------------------------------------------------------------------------- /src/EventStore.Core/TransactionLog/Chunks/ChunkHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/TransactionLog/Chunks/ChunkHeader.cs -------------------------------------------------------------------------------- /src/EventStore.Core/TransactionLog/Chunks/TFChunkDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/TransactionLog/Chunks/TFChunkDb.cs -------------------------------------------------------------------------------- /src/EventStore.Core/TransactionLog/Chunks/TFConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/TransactionLog/Chunks/TFConsts.cs -------------------------------------------------------------------------------- /src/EventStore.Core/TransactionLog/ReadResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/TransactionLog/ReadResults.cs -------------------------------------------------------------------------------- /src/EventStore.Core/TransactionLog/RecordWriteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/TransactionLog/RecordWriteResult.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/DefaultFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/DefaultFiles.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/FileUtil.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/MD5Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/MD5Hash.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/MiniWeb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/MiniWeb.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/Opts.DotNetty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/Opts.DotNetty.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/Opts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/Opts.cs -------------------------------------------------------------------------------- /src/EventStore.Core/Util/ThreadPoolScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/Util/ThreadPoolScheduler.cs -------------------------------------------------------------------------------- /src/EventStore.Core/VNodeBuilder.DotNetty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/VNodeBuilder.DotNetty.cs -------------------------------------------------------------------------------- /src/EventStore.Core/VNodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/VNodeBuilder.cs -------------------------------------------------------------------------------- /src/EventStore.Core/VNodeStatusChangeArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Core/VNodeStatusChangeArgs.cs -------------------------------------------------------------------------------- /src/EventStore.Native/EventStore.Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/EventStore.Native.csproj -------------------------------------------------------------------------------- /src/EventStore.Native/Internal/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/Internal/LoggingExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Native/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.Native/Internal/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/Internal/Strings.Designer.cs -------------------------------------------------------------------------------- /src/EventStore.Native/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.Native/Internal/ThrowHelper.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/Internal/ThrowHelper.Extensions.cs -------------------------------------------------------------------------------- /src/EventStore.Native/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Native/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/LoggingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core.Tests/LoggingUtils.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/Other/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core.Tests/Other/Stopwatch.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/Queries/1Query.js: -------------------------------------------------------------------------------- 1 | log("Hello"); -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/Services/not_started_event_distribution_point_should.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/Services/paused_at_event_distribution_point.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/TestsInitFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core.Tests/TestsInitFixture.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core.Tests/run.cmd: -------------------------------------------------------------------------------- 1 | dotnet test -- RunConfiguration.TargetPlatform=x64 -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Messages/IQuerySources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Messages/IQuerySources.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Prelude/1Prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Prelude/1Prelude.js -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Prelude/Modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Prelude/Modules.js -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Prelude/Projections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Prelude/Projections.js -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/ProjectionManagerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/ProjectionManagerNode.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/ProjectionWorkerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/ProjectionWorkerNode.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/ProjectionsSubsystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/ProjectionsSubsystem.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Services/ReadWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Services/ReadWrite.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Services/SystemNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Services/SystemNames.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Standard/IndexStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Standard/IndexStreams.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Standard/StubHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Standard/StubHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Utils/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Utils/EnumExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/Utils/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/Utils/Logging.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/v8/CompiledScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/v8/CompiledScript.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/v8/Js1Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/v8/Js1Exception.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/v8/PreludeScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/v8/PreludeScript.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/v8/QueryScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/v8/QueryScript.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.Core/v8/js1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.Core/v8/js1.cs -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/CompiledScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/CompiledScript.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/EventHandler.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/EventHandler.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/ModuleScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/ModuleScript.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/ModuleScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/ModuleScript.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/PreludeScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/PreludeScript.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/QueryScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/QueryScript.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/QueryScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/QueryScript.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/V8Wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/V8Wrapper.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/V8Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/V8Wrapper.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/defines.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/dllmain.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/js1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/js1.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/js1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/js1.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/resource.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/stdafx.cpp -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/stdafx.h -------------------------------------------------------------------------------- /src/EventStore.Projections.v8Integration/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Projections.v8Integration/targetver.h -------------------------------------------------------------------------------- /src/EventStore.Rags.Tests/EventStore.Rags.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags.Tests/EventStore.Rags.Tests.csproj -------------------------------------------------------------------------------- /src/EventStore.Rags.Tests/TestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags.Tests/TestType.cs -------------------------------------------------------------------------------- /src/EventStore.Rags.Tests/YamlTests/valid_config.yaml: -------------------------------------------------------------------------------- 1 | Name: foo -------------------------------------------------------------------------------- /src/EventStore.Rags.Tests/run.cmd: -------------------------------------------------------------------------------- 1 | dotnet test -- RunConfiguration.TargetPlatform=x64 -------------------------------------------------------------------------------- /src/EventStore.Rags/ArgAliasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ArgAliasAttribute.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/ArgDescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ArgDescriptionAttribute.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/ArgReviverAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ArgReviverAttribute.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/ArgShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ArgShortcut.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/ArgShortcutPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ArgShortcutPolicy.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/ArgUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ArgUsage.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/CommandLine.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/ConsoleString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/ConsoleString.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/EventStore.Rags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/EventStore.Rags.csproj -------------------------------------------------------------------------------- /src/EventStore.Rags/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/Exceptions.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/Extensions.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/NameTranslators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/NameTranslators.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/OptionApplicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/OptionApplicator.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/OptionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/OptionException.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/OptionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/OptionSource.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/Translators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/Translators.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/TypeDefaultOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/TypeDefaultOptions.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/TypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/TypeMap.cs -------------------------------------------------------------------------------- /src/EventStore.Rags/Yaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Rags/Yaml.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/App.config -------------------------------------------------------------------------------- /src/EventStore.TestClient/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Client.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/ClientApiLoggerBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/ClientApiLoggerBridge.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/ClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/ClientOptions.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/CommandProcessorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/CommandProcessorContext.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/DeleteProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/DeleteProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/DvuBasic/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/DvuBasic/Status.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/ExitProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/ExitProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/MultiWriteProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/MultiWriteProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/PingFloodProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/PingFloodProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/PingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/PingProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/ReadAllProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/ReadAllProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/ReadFloodProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/ReadFloodProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/ReadProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/ReadProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/RequestMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/RequestMonitor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/ScavengeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/ScavengeProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/UsageProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/UsageProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/WriteFloodProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/WriteFloodProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/WriteJsonProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/WriteJsonProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Commands/WriteProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Commands/WriteProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/CommandsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/CommandsProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/ConsoleTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/ConsoleTable.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/EventStore.TestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/EventStore.TestClient.csproj -------------------------------------------------------------------------------- /src/EventStore.TestClient/ICmdProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/ICmdProcessor.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/PerfUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/PerfUtils.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/PortsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/PortsHelper.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Program.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EventStore.TestClient/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.TestClient/project.json -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/AsyncQueuedBufferWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/AsyncQueuedBufferWriter.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/AsyncStreamCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/AsyncStreamCopier.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Atom/AtomExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Atom/AtomExceptions.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Atom/AtomSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Atom/AtomSpecs.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Atom/Feed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Atom/Feed.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Atom/ServiceDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Atom/ServiceDocument.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Client/HttpAsyncClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Client/HttpAsyncClient.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Client/IHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Client/IHttpClient.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/Codec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/CustomCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/CustomCodec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/JsonCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/JsonCodec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/ManualEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/ManualEncoding.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/NoCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/NoCodec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/TextCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/TextCodec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Codecs/XmlCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Codecs/XmlCodec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/CompressionAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/CompressionAlgorithms.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/ContentType.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/HttpMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/HttpMethod.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/HttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/HttpResponse.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/HttpStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/HttpStatusCode.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/ICodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/ICodec.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/IOStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/IOStreams.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/MediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/MediaType.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/ProxyHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/ProxyHeaders.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/Server/HttpAsyncServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/Server/HttpAsyncServer.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Http/WebRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Http/WebRequestExtensions.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/ClosedConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/ClosedConnectionException.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Disassociated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Disassociated.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/DotNettyClientTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/DotNettyClientTransport.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/DotNettyConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/DotNettyConnection.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/DotNettyServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/DotNettyServerTransport.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/DotNettyTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/DotNettyTransport.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/DotNettyTransportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/DotNettyTransportSettings.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Handlers/CommonHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Handlers/CommonHandlers.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Handlers/TcpClientHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Handlers/TcpClientHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Handlers/TcpHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Handlers/TcpHandlers.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Handlers/TcpServerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Handlers/TcpServerHandler.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Helper.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/IIConnectionEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/IIConnectionEventListener.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/IMonitoredTcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/IMonitoredTcpConnection.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/ITcpConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/ITcpConnection.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/ITcpPackageListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/ITcpPackageListener.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/InboundConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/InboundConnection.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Internal/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Internal/SR.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Internal/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Internal/Strings.Designer.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Internal/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Internal/Strings.resx -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/Internal/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/Internal/ThrowHelper.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/PackageFramingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/PackageFramingException.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/TcpConnectionMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/TcpConnectionMonitor.cs -------------------------------------------------------------------------------- /src/EventStore.Transport.Tcp/TcpStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/EventStore.Transport.Tcp/TcpStats.cs -------------------------------------------------------------------------------- /src/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/NLog.config -------------------------------------------------------------------------------- /src/NLogValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/NLogValueFormatter.cs -------------------------------------------------------------------------------- /src/Protos/ClientAPI/ClientMessageDtos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Protos/ClientAPI/ClientMessageDtos.proto -------------------------------------------------------------------------------- /src/Scripts/projections/check-ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/check-ce.sh -------------------------------------------------------------------------------- /src/Scripts/projections/check2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/check2.sh -------------------------------------------------------------------------------- /src/Scripts/projections/create-account-foreach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/create-account-foreach.sh -------------------------------------------------------------------------------- /src/Scripts/projections/create-account-foreach1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/create-account-foreach1.sh -------------------------------------------------------------------------------- /src/Scripts/projections/create-account-foreach2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/create-account-foreach2.sh -------------------------------------------------------------------------------- /src/Scripts/projections/create-event-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/create-event-index.sh -------------------------------------------------------------------------------- /src/Scripts/projections/create-streamer-projection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/create-streamer-projection.sh -------------------------------------------------------------------------------- /src/Scripts/projections/forall-foreach.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/forall-foreach.sh -------------------------------------------------------------------------------- /src/Scripts/projections/gen-ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/gen-ce.sh -------------------------------------------------------------------------------- /src/Scripts/projections/test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/test1.sh -------------------------------------------------------------------------------- /src/Scripts/projections/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/Scripts/projections/test2.sh -------------------------------------------------------------------------------- /src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/app.config -------------------------------------------------------------------------------- /src/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/app.ico -------------------------------------------------------------------------------- /src/app2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/app2.ico -------------------------------------------------------------------------------- /src/libs/x64/linux/libjs1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/libs/x64/linux/libjs1.so -------------------------------------------------------------------------------- /src/libs/x64/mac/libjs1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/libs/x64/mac/libjs1.dylib -------------------------------------------------------------------------------- /src/libs/x64/win/js1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/libs/x64/win/js1.dll -------------------------------------------------------------------------------- /src/libs/x64/win/js1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/libs/x64/win/js1.pdb -------------------------------------------------------------------------------- /src/nuget.client.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/nuget.client.props -------------------------------------------------------------------------------- /src/version.client.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/src/version.client.props -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/EventStore.ClientAPI.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/test/EventStore.ClientAPI.Benchmarks/Program.cs -------------------------------------------------------------------------------- /test/EventStore.ClientAPI.Tests/HandlerCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/test/EventStore.ClientAPI.Tests/HandlerCollectionTests.cs -------------------------------------------------------------------------------- /test/EventStore.ClientAPI.Tests/Internals/XAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/test/EventStore.ClientAPI.Tests/Internals/XAssert.cs -------------------------------------------------------------------------------- /test/EventStore.ClientAPI.Tests/TestEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/test/EventStore.ClientAPI.Tests/TestEvents.cs -------------------------------------------------------------------------------- /test/EventStore.ClientAPI.Tests/run.cmd: -------------------------------------------------------------------------------- 1 | dotnet test -- RunConfiguration.TargetPlatform=x64 -------------------------------------------------------------------------------- /test/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/test/NLog.config -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuteant/EventStore-DotNetty-Fork/HEAD/version.props --------------------------------------------------------------------------------