├── .all-contributorsrc ├── .dockerignore ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── ask_question.md │ ├── bug_report.md │ ├── context.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── context.md ├── dependabot.yml └── workflows │ ├── build-dev.yml │ ├── context.md │ ├── dev-tests.yml │ └── pull-request.yml ├── .gitignore ├── .images ├── ahoy.svg ├── asynkron.png ├── context.md ├── etteplan.png └── ubiquitous.png ├── .mergify.yml ├── AGENTS.md ├── CLUSTER_MEMBERSHIP_GOSSIP.md ├── CODEBASE_OVERVIEW.md ├── Directory.Packages.props ├── EVENTSTREAM_EVENTS.md ├── LICENSE ├── ProtoActor.sln ├── ProtoActor.sln.DotSettings ├── ProtoActor.snk ├── ProtoActorCoreOnly.sln ├── README.md ├── SECURITY.md ├── Terminology.md ├── benchmarks ├── AutoClusterBenchmark │ ├── AutoClusterBenchmark.csproj │ ├── Configuration.cs │ ├── Program.cs │ ├── Runner.cs │ ├── WorkerActor.cs │ ├── context.md │ └── messages.proto ├── ClusterBenchmark │ ├── ClrMessages.cs │ ├── ClusterBenchmark.csproj │ ├── Configuration.cs │ ├── DockerSupport.cs │ ├── Program.cs │ ├── Runner.cs │ ├── WorkerActor.cs │ ├── context.md │ ├── docker-compose.yml │ ├── logs │ │ ├── context.md │ │ ├── log1756153512.md │ │ ├── log1756153664.md │ │ └── log1756154034.md │ └── messages.proto ├── ClusterMicroBenchmarks │ ├── ClusterMicroBenchmarks.csproj │ ├── ConcurrentSpawnBenchmark.cs │ ├── InProcessClusterBatchRequestBenchmark.cs │ ├── InProcessClusterRequestBenchmark.cs │ ├── InProcessRequestAsyncBenchmark.cs │ ├── ObjectPoolBenchmarks.cs │ ├── Program.cs │ ├── RendezvousBenchmark.cs │ └── context.md ├── Directory.Build.props ├── EndpointManagerTest │ ├── Dockerfile │ ├── EndpointManagerTest.csproj │ ├── Program.cs │ └── context.md ├── GossipBenchmark │ ├── GossipBenchmark.sln │ ├── Messages │ │ ├── Messages.csproj │ │ ├── Protos.proto │ │ └── context.md │ ├── Node1 │ │ ├── Node1.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── Node2 │ │ ├── Node2.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── context.md │ ├── docker-compose.yml │ └── run.sh ├── GossipDecoder │ ├── GossipDecoder.csproj │ ├── Program.cs │ └── context.md ├── HostedService │ ├── HostedService.csproj │ ├── Program.cs │ ├── Properties │ │ ├── context.md │ │ └── launchSettings.json │ ├── ProtoHost.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── context.md ├── InprocessBenchmark │ ├── InprocessBenchmark.csproj │ ├── Program.cs │ └── context.md ├── KubernetesDiagnostics │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── KubernetesDiagnostics.csproj │ ├── Program.cs │ ├── build.sh │ ├── build2.sh │ ├── context.md │ ├── redis.yaml │ └── service.yaml ├── MailboxBenchmark │ ├── MailboxBenchmark.cs │ ├── MailboxBenchmark.csproj │ ├── Program.cs │ └── context.md ├── PingPongBenchmark │ ├── LocalPingPong.csproj │ ├── PingActor.cs │ ├── PongActor.cs │ ├── Program.cs │ └── context.md ├── PropsBenchmark │ ├── Program.cs │ ├── PropsBenchmark.csproj │ ├── SomeState.cs │ └── context.md ├── ProtoActorBenchmarks │ ├── LongBenchmark.cs │ ├── Program.cs │ ├── ProtoActorBenchmarks.csproj │ ├── ShortBenchmark.cs │ ├── SkyNetBenchmark.cs │ ├── TestActors.cs │ └── context.md ├── RemoteBenchmark │ ├── Messages │ │ ├── Messages.cs │ │ ├── Messages.csproj │ │ ├── Protos.proto │ │ └── context.md │ ├── Node1 │ │ ├── Node1.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── Node2 │ │ ├── Node2.csproj │ │ ├── Program.cs │ │ └── context.md │ └── context.md ├── SkyriseMini │ ├── Client │ │ ├── ActorSystemHostedService.cs │ │ ├── PingPongActorRaw.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── context.md │ │ │ └── launchSettings.json │ │ ├── ProtoActorExtensions.cs │ │ ├── ProtoActorTestServicesRaw.cs │ │ ├── SkyriseMiniClient.csproj │ │ ├── Tests │ │ │ ├── ActivationTest.cs │ │ │ ├── MessagingTest.cs │ │ │ ├── TestManager.cs │ │ │ ├── TestServices.cs │ │ │ └── context.md │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── context.md │ │ ├── docker-compose.yml │ │ └── protos.proto │ ├── Server │ │ ├── ActorSystemHostedService.cs │ │ ├── Monitoring │ │ │ ├── TestMetrics.cs │ │ │ └── context.md │ │ ├── PingPongActorRaw.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── context.md │ │ │ └── launchSettings.json │ │ ├── ProtoActorExtensions.cs │ │ ├── SkyriseMiniServer.csproj │ │ ├── Tests │ │ │ ├── ActivationTest.cs │ │ │ ├── MessagingTest.cs │ │ │ ├── TestManager.cs │ │ │ ├── TestServices.cs │ │ │ └── context.md │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── context.md │ │ ├── docker-compose.yml │ │ └── protos.proto │ └── context.md ├── SpawnBenchmark │ ├── Program.cs │ ├── SpawnBenchmark.csproj │ └── context.md └── context.md ├── cluster.drawio ├── context.md ├── dockerfile-reader ├── dockerfile-sender ├── examples ├── Directory.Build.props ├── actor.context-decorators │ ├── ContextDecorators.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.deadletter-throttling │ ├── DeadLetterThrottling.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.dependency-injection │ ├── Controllers │ │ ├── ActorController.cs │ │ └── context.md │ ├── DependencyInjection.csproj │ ├── Program.cs │ ├── Properties │ │ ├── context.md │ │ └── launchSettings.json │ ├── README.md │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── context.md ├── actor.event-stream-topics │ ├── EventStreamTopics.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.event-stream │ ├── EventStream.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.futures │ ├── Futures.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.hello-world-fsharp │ ├── HelloWorld.fsproj │ ├── Program.fs │ ├── README.md │ └── context.md ├── actor.hello-world │ ├── HelloWorld.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.lifecycle-events │ ├── LifecycleEvents.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.message-headers │ ├── MessageHeaders.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.metrics │ ├── ActorMetrics.csproj │ ├── Controllers │ │ ├── WeatherForecastController.cs │ │ └── context.md │ ├── Messages.proto │ ├── Program.cs │ ├── Properties │ │ ├── context.md │ │ └── launchSettings.json │ ├── README.md │ ├── RunDummyCluster.cs │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── context.md │ ├── docker-compose.yaml │ ├── grafana │ │ ├── context.md │ │ ├── dashboards │ │ │ ├── context.md │ │ │ ├── dashboard.yml │ │ │ └── proto-actor-sample-dashboard.json │ │ └── datasources.yml │ └── prometheus.yml ├── actor.middleware │ ├── Middleware.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.open-telemetry │ ├── ActorOpenTelemetry.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.receive-timeout │ ├── Program.cs │ ├── README.md │ ├── ReceiveTimeout.csproj │ └── context.md ├── actor.router │ ├── Program.cs │ ├── README.md │ ├── Router.csproj │ └── context.md ├── actor.saga │ ├── Account.cs │ ├── AccountProxy.cs │ ├── Factories │ │ ├── TransferFactory.cs │ │ └── context.md │ ├── InMemoryProvider.cs │ ├── Internal │ │ ├── ForWithProgress.cs │ │ └── context.md │ ├── Messages │ │ ├── Messages.cs │ │ └── context.md │ ├── Program.cs │ ├── README.md │ ├── Runner.cs │ ├── Saga.csproj │ ├── TransferProcess.cs │ └── context.md ├── actor.scheduled-messages │ ├── Program.cs │ ├── README.md │ ├── ScheduledMessages.csproj │ └── context.md ├── actor.supervision-escalate │ ├── EscalateSupervision.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── actor.supervision │ ├── Program.cs │ ├── README.md │ ├── Supervision.csproj │ └── context.md ├── cluster.aspnet-grains │ ├── Messages │ │ ├── Messages.csproj │ │ ├── Protos.proto │ │ └── context.md │ ├── Node1 │ │ ├── Node1.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── context.md │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── context.md │ ├── Node2 │ │ ├── HelloGrain.cs │ │ ├── Node2.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── context.md │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── context.md │ ├── README.md │ └── context.md ├── cluster.dashboard-host │ ├── Program.cs │ ├── Properties │ │ ├── context.md │ │ └── launchSettings.json │ ├── Proto.Cluster.Dashboard.Host.csproj │ ├── README.md │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── context.md │ └── wwwroot │ │ ├── context.md │ │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ └── context.md │ │ ├── context.md │ │ ├── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ ├── context.md │ │ │ └── font │ │ │ │ ├── context.md │ │ │ │ ├── css │ │ │ │ ├── context.md │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ └── fonts │ │ │ │ ├── context.md │ │ │ │ ├── open-iconic.eot │ │ │ │ ├── open-iconic.otf │ │ │ │ ├── open-iconic.svg │ │ │ │ ├── open-iconic.ttf │ │ │ │ └── open-iconic.woff │ │ └── site.css │ │ └── favicon.ico ├── cluster.event-stream-topics │ ├── EventStreamTopicsCluster.csproj │ ├── Program.cs │ ├── README.md │ ├── context.md │ └── messages.proto ├── cluster.gossip │ ├── ClusterGossip.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── cluster.hello-world-grain │ ├── ClusterGrains.sln │ ├── Messages │ │ ├── Messages.csproj │ │ ├── Protos.proto │ │ └── context.md │ ├── Node1 │ │ ├── Node1.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── Node2 │ │ ├── Node2.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── README.md │ ├── context.md │ ├── docker-compose.yml │ └── run.sh ├── cluster.kafka-virtual-actor-ingress │ ├── DeviceActor.cs │ ├── KafkaVirtualActorIngress.csproj │ ├── MyMessages.proto │ ├── Program.cs │ ├── README.md │ ├── context.md │ └── docker-compose.yml ├── cluster.kubernetes-grains │ ├── Clusterk8sGrains.sln │ ├── Messages │ │ ├── Messages.csproj │ │ ├── Protos.proto │ │ └── context.md │ ├── Node1 │ │ ├── Dockerfile │ │ ├── Node1.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── Node2 │ │ ├── Dockerfile │ │ ├── Node2.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── README.md │ ├── chart │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── context.md │ │ ├── templates │ │ │ ├── context.md │ │ │ ├── namespace.yaml │ │ │ ├── node1-deployment.yaml │ │ │ ├── node2-deployment.yaml │ │ │ ├── protoactor-k8s-cluster-port-service.yaml │ │ │ ├── protoactor-k8s-grains-role.yaml │ │ │ ├── protoactor-k8s-grains-rolebinding.yaml │ │ │ └── protoactor-k8s-grains-serviceaccount.yaml │ │ └── values.yaml │ └── context.md ├── cluster.kubernetes-hello-world │ ├── README.md │ ├── build.sh │ ├── cleanup.sh │ ├── context.md │ ├── deploy.sh │ ├── expose_consul.sh │ ├── manifests │ │ ├── app │ │ │ ├── context.md │ │ │ ├── node1.yaml │ │ │ ├── node2.yaml │ │ │ └── node_template.yaml │ │ ├── consul │ │ │ ├── context.md │ │ │ ├── service.yaml │ │ │ └── statefulsets.yaml │ │ └── context.md │ └── sed ├── cluster.pubsub-batching-producer │ ├── ClusterPubSubBatchingProducer.csproj │ ├── Program.cs │ ├── README.md │ ├── context.md │ └── protos.proto ├── cluster.pubsub │ ├── ClusterPubSub.csproj │ ├── Program.cs │ ├── README.md │ ├── context.md │ └── protos.proto ├── cluster.statistics │ ├── ClusterStatistics.csproj │ ├── Program.cs │ ├── README.md │ └── context.md ├── context.md ├── persistence.basic │ ├── Messages │ │ ├── Messages.csproj │ │ ├── Protos.proto │ │ └── context.md │ ├── Persistence │ │ ├── Persistence.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── README.md │ └── context.md ├── remote.activate │ ├── Messages │ │ ├── Messages.csproj │ │ ├── Protos.g.cs │ │ ├── Protos.proto │ │ └── context.md │ ├── Node1 │ │ ├── Node1.csproj │ │ ├── Program.cs │ │ ├── context.md │ │ └── runtimeconfig.template.json │ ├── Node2 │ │ ├── Node2.csproj │ │ ├── Program.cs │ │ ├── context.md │ │ └── runtimeconfig.template.json │ ├── README.md │ └── context.md ├── remote.channels │ ├── Client │ │ ├── Client.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── Common │ │ ├── ChannelPublisherActor.cs │ │ ├── ChannelSubscriberActor.cs │ │ ├── Common.csproj │ │ ├── Messages.cs │ │ └── context.md │ ├── README.md │ ├── Server │ │ ├── Program.cs │ │ ├── Server.csproj │ │ └── context.md │ └── context.md ├── remote.chat-example │ ├── Client │ │ ├── Client.csproj │ │ ├── Program.cs │ │ └── context.md │ ├── Messages │ │ ├── Chat.Messages.csproj │ │ ├── Chat.proto │ │ └── context.md │ ├── README.md │ ├── Server │ │ ├── Program.cs │ │ ├── Server.csproj │ │ └── context.md │ └── context.md ├── remote.open-telemetry-tracing │ ├── OpenTelemetryTracing.csproj │ ├── Program.cs │ ├── README.md │ └── context.md └── remote.tls │ ├── Client │ ├── Client.csproj │ ├── Program.cs │ └── context.md │ ├── Common │ ├── Common.csproj │ ├── Messages.cs │ └── context.md │ ├── README.md │ ├── Server │ ├── Program.cs │ ├── Server.csproj │ └── context.md │ └── context.md ├── global.json ├── logo.png ├── logs ├── context.md ├── exceptions.md ├── log1755870784.md ├── log1755871205.md ├── log1755871331.md ├── log1755872234.md ├── log1755873369.md ├── log1755875598.md ├── log1755877694.md ├── log1755879377.md ├── log1755879960.md ├── log1755881596.md ├── log1755883079.md ├── log1755884377.md ├── log1755885706.md ├── log1755887131.md ├── log1755887133.md ├── log1755887170.md ├── log1755887442.md ├── log1755890580.md ├── log1755890748.md ├── log1755892615.md ├── log1755892790.md ├── log1755893016.md ├── log1755894226.md ├── log1755928636.md ├── log1755929684.md ├── log1755930042.md ├── log1755937495.md ├── log1755937774.md ├── log1755938425.md ├── log1755940222.md ├── log1755940517.md ├── log1755940658.md ├── log1755941043.md ├── log1755942454.md ├── log1755942573.md ├── log1755949362.md ├── log1755953264.md ├── log1755969060.md ├── log1755972031.md ├── log1755972987.md ├── log1755973076.md ├── log1755973590.md ├── log1755974004.md ├── log1755975410.md ├── log1755975701.md ├── log1755976135.md ├── log1755977078.md ├── log1755977337.md ├── log1755978126.md ├── log1755980804.md ├── log1756009491.md ├── log1756009684.md ├── log1756010588.md ├── log1756012262.md ├── log1756013526.md ├── log1756014903.md ├── log1756017958.md ├── log1756018838.md ├── log1756021716.md ├── log1756024459.md ├── log1756064359.md ├── log1756067564.md ├── log1756071034.md ├── log1756071104.md ├── log1756071220.md ├── log1756098266.md ├── log1756108907.md ├── log1756110054.md ├── log1756114527.md ├── log1756115099.md ├── log1756116841.md ├── log1756121959.md ├── log1756122285.md ├── log1756123592.md ├── log1756124640.md ├── log1756126119.md ├── log1756126139.md ├── log1756132378.md ├── log1756135976.md ├── log1756138092.md ├── log1756141591.md ├── log1756143118.md ├── log1756149439.md └── log1759123815.md ├── runtimeconfig.template.dev.json ├── service.yaml ├── src ├── Directory.Build.props ├── Proto.Actor │ ├── ActorSystem.cs │ ├── ActorSystemConfig.cs │ ├── ActorSystemLogMessages.cs │ ├── Behavior.cs │ ├── CancellationTokens.cs │ ├── Context │ │ ├── ActorContext.cs │ │ ├── ActorContextDecorator.cs │ │ ├── ActorContextExtras.cs │ │ ├── ActorContextLogMessages.cs │ │ ├── ActorLoggingContext.cs │ │ ├── ActorLoggingContextExtensions.cs │ │ ├── BatchContext.cs │ │ ├── BatchContextLogMessages.cs │ │ ├── CapturedContext.cs │ │ ├── ContextState.cs │ │ ├── DeadlineContextDecorator.cs │ │ ├── DeadlineContextDecoratorLogMessages.cs │ │ ├── IContext.cs │ │ ├── IContextStore.cs │ │ ├── IInfoContext.cs │ │ ├── IReceiverContext.cs │ │ ├── ISenderContext.cs │ │ ├── ISpawnerContext.cs │ │ ├── IStopperContext.cs │ │ ├── ISystemContext.cs │ │ ├── PassivationContextDecorator.cs │ │ ├── ReenterAfterExtensions.cs │ │ ├── RootContext.cs │ │ ├── RootContextDecorator.cs │ │ ├── RootContextLogMessages.cs │ │ ├── RootLoggingContext.cs │ │ ├── SenderContextLogMessages.cs │ │ ├── StartupDeadlineContextDecorator.cs │ │ ├── StartupDeadlineContextDecoratorLogMessages.cs │ │ ├── SystemContext.cs │ │ ├── SystemContextLogMessages.cs │ │ └── context.md │ ├── Deduplication │ │ ├── DeDuplicatorLogMessages.cs │ │ ├── DeduplicationContext.cs │ │ └── context.md │ ├── Delegates.cs │ ├── DependencyInjection │ │ ├── DIExtension.cs │ │ ├── DependencyResolver.cs │ │ ├── DependencyResolverLogMessages.cs │ │ ├── IDependencyResolver.cs │ │ └── context.md │ ├── Diagnostics │ │ ├── DiagnosticTools.cs │ │ ├── DiagnosticsEntry.cs │ │ ├── DiagnosticsSerializer.cs │ │ ├── DiagnosticsStore.cs │ │ ├── IActorDiagnostics.cs │ │ ├── IDiagnosticsProvider.cs │ │ ├── IDiagnosticsTypeName.cs │ │ └── context.md │ ├── EventStream │ │ ├── DeadLetter.cs │ │ ├── EventExpectation.cs │ │ ├── EventProbe.cs │ │ ├── EventProbeLogMessages.cs │ │ ├── EventStream.cs │ │ ├── EventStreamLogMessages.cs │ │ ├── EventStreamProcess.cs │ │ └── context.md │ ├── Exceptions.cs │ ├── Extensions.cs │ ├── Extensions │ │ ├── ActorSystemExtensions.cs │ │ ├── IActorSystemExtension.cs │ │ ├── TypeExtensions.cs │ │ └── context.md │ ├── FunctionActor.cs │ ├── Future │ │ ├── FutureBatch.cs │ │ ├── Futures.cs │ │ ├── SharedFuture.cs │ │ └── context.md │ ├── IActor.cs │ ├── InternalsVisibleTo.cs │ ├── Logging │ │ ├── Extensions.cs │ │ ├── InstanceLogger.cs │ │ ├── Log.cs │ │ ├── LogStore.cs │ │ ├── LogStoreEntry.cs │ │ ├── LogValueFormatter.cs │ │ ├── NullLoggerFactory.cs │ │ └── context.md │ ├── Mailbox │ │ ├── BatchingMailbox.cs │ │ ├── BoundedMailbox.cs │ │ ├── BoundedMailboxQueue.cs │ │ ├── DefaultMailbox.cs │ │ ├── Dispatcher.cs │ │ ├── IMailbox.cs │ │ ├── LockingUnboundedMailboxQueue.cs │ │ ├── MPMCQueue.cs │ │ ├── Messages.cs │ │ ├── NonBlockingBoundedMailbox.cs │ │ ├── Queue.cs │ │ ├── UnboundedMailbox.cs │ │ ├── UnboundedMailboxQueue.cs │ │ └── context.md │ ├── Messages │ │ ├── IAutoRespond.cs │ │ ├── IMessageBatch.cs │ │ ├── MessageEnvelope.cs │ │ ├── MessageExtensions.cs │ │ ├── MessageHeader.cs │ │ ├── Messages.cs │ │ └── context.md │ ├── Metrics │ │ ├── ActorMetrics.cs │ │ ├── Metrics.cs │ │ ├── MetricsExtensions.cs │ │ ├── ObservableGaugeWrapper.cs │ │ └── context.md │ ├── Middleware.cs │ ├── PID.cs │ ├── Process │ │ ├── ActorProcess.cs │ │ ├── Process.cs │ │ ├── ProcessRegistry.cs │ │ └── context.md │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── context.md │ ├── Props │ │ ├── Props.cs │ │ └── context.md │ ├── Proto.Actor.csproj │ ├── ProtoTags.cs │ ├── Protos.proto │ ├── Router │ │ ├── HashRing.cs │ │ ├── IHashable.cs │ │ ├── Messages │ │ │ ├── RouterMessages.cs │ │ │ └── context.md │ │ ├── RouterActor.cs │ │ ├── RouterExtensions.cs │ │ ├── RouterProcess.cs │ │ ├── Routers │ │ │ ├── BroadcastGroupRouterConfig.cs │ │ │ ├── BroadcastPoolRouterConfig.cs │ │ │ ├── BroadcastRouterState.cs │ │ │ ├── ConsistentHashGroupRouterConfig.cs │ │ │ ├── ConsistentHashPoolRouterConfig.cs │ │ │ ├── ConsistentHashRouterState.cs │ │ │ ├── GroupRouterConfig.cs │ │ │ ├── PoolRouterConfig.cs │ │ │ ├── RandomGroupRouterConfig.cs │ │ │ ├── RandomPoolRouterConfig.cs │ │ │ ├── RandomRouterState.cs │ │ │ ├── RoundRobinGroupRouterConfig.cs │ │ │ ├── RoundRobinPoolRouterConfig.cs │ │ │ ├── RoundRobinRouterState.cs │ │ │ ├── RouterConfig.cs │ │ │ ├── RouterState.cs │ │ │ └── context.md │ │ └── context.md │ ├── Stopper.cs │ ├── Supervision │ │ ├── AllForOneStrategy.cs │ │ ├── AllForOneStrategyLogMessages.cs │ │ ├── AlwaysRestartStrategy.cs │ │ ├── ExponentialBackoffStrategy.cs │ │ ├── Guardians.cs │ │ ├── ISupervisor.cs │ │ ├── ISupervisorStrategy.cs │ │ ├── OneForOneStrategy.cs │ │ ├── OneForOneStrategyLogMessages.cs │ │ ├── RestartStatistics.cs │ │ ├── Supervision.cs │ │ ├── SupervisorDirective.cs │ │ └── context.md │ ├── Timers │ │ ├── ISchedulerHook.cs │ │ ├── Scheduler.cs │ │ ├── TimerExtensions.cs │ │ └── context.md │ ├── Utils │ │ ├── AsyncSemaphore.cs │ │ ├── ConcurrentKeyValueStore.cs │ │ ├── ConcurrentSet.cs │ │ ├── EmptyKeyValueStore.cs │ │ ├── IKeyValueStore.cs │ │ ├── MurMurHash2.cs │ │ ├── Retry.cs │ │ ├── TaskClock.cs │ │ ├── TaskExtensions.cs │ │ ├── TaskFactory.cs │ │ ├── TaskFactoryLogMessages.cs │ │ ├── ThreadPoolStats.cs │ │ ├── Throttle.cs │ │ ├── TypedDictionary.cs │ │ └── context.md │ └── context.md ├── Proto.Analyzers │ ├── DiagnosticCategories.cs │ ├── DiagnosticDescriptors.cs │ ├── DiagnosticIds.cs │ ├── Diagnostics │ │ ├── PoisonSelfAnalyzer.cs │ │ ├── TaskMessageAnalyzer.cs │ │ └── context.md │ ├── Proto.Analyzers.csproj │ ├── SymbolExtensions.cs │ ├── SyntaxExtensions.cs │ ├── context.md │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── Proto.Cluster.AmazonECS │ ├── AmazonEcsProvider.cs │ ├── AmazonEcsProviderConfig.cs │ ├── AwsHttpClient.cs │ ├── EcsUtils.cs │ ├── Proto.Cluster.AmazonECS.csproj │ ├── ProtoLabels.cs │ └── context.md ├── Proto.Cluster.AzureContainerApps │ ├── Actors │ │ ├── AzureContainerAppsClusterMonitor.cs │ │ └── context.md │ ├── ArmClientProviders │ │ ├── DefaultAzureCredentialArmClientProvider.cs │ │ └── context.md │ ├── ClusterProviders │ │ ├── AzureContainerAppsProvider.cs │ │ └── context.md │ ├── Contracts │ │ ├── IArmClientProvider.cs │ │ ├── IClusterMemberStore.cs │ │ ├── IContainerAppMetadataAccessor.cs │ │ ├── ISystemClock.cs │ │ └── context.md │ ├── Extensions │ │ ├── ServiceCollectionExtensions.cs │ │ └── context.md │ ├── Messages │ │ ├── RegisterMember.cs │ │ ├── UnregisterMember.cs │ │ ├── UpdateMembers.cs │ │ └── context.md │ ├── Models │ │ ├── ContainerAppMetadata.cs │ │ ├── StoredMember.cs │ │ └── context.md │ ├── Options │ │ ├── AzureContainerAppsProviderOptions.cs │ │ ├── AzureContainerAppsProviderOptionsValidator.cs │ │ └── context.md │ ├── Proto.Cluster.AzureContainerApps.csproj │ ├── Readme.md │ ├── Services │ │ ├── DefaultSystemClock.cs │ │ ├── EnvironmentContainerAppMetadataAccessor.cs │ │ └── context.md │ ├── Stores │ │ ├── Redis │ │ │ ├── IRedisConnectionMultiplexerProvider.cs │ │ │ ├── RedisClusterMemberStore.cs │ │ │ ├── RedisConnectionMultiplexerProvider.cs │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ └── context.md │ │ ├── ResourceTags │ │ │ ├── ArmClientUtils.cs │ │ │ ├── ResourceTagNames.cs │ │ │ ├── ResourceTagsClusterMemberStore.cs │ │ │ ├── ResourceTagsMemberStoreOptions.cs │ │ │ ├── ResourceTagsMemberStoreOptionsValidator.cs │ │ │ ├── ServiceCollectionExtensions.cs │ │ │ ├── TaggedMember.cs │ │ │ └── context.md │ │ └── context.md │ ├── Utils │ │ ├── ArmClientProviders.cs │ │ ├── IPUtils.cs │ │ └── context.md │ └── context.md ├── Proto.Cluster.CodeGen │ ├── CodeGenerator.cs │ ├── Generator.cs │ ├── OutputFileName.cs │ ├── PathPolyfill.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── context.md │ ├── Proto.Cluster.CodeGen.csproj │ ├── ProtoGenTask.cs │ ├── README.md │ ├── Template.cs │ ├── build.sh │ ├── build │ │ ├── Proto.Cluster.CodeGen.props │ │ ├── ProtoGrainGenerator.props │ │ └── context.md │ ├── buildMultiTargeting │ │ ├── Proto.Cluster.CodeGen.props │ │ ├── ProtoGrainGenerator.props │ │ └── context.md │ ├── context.md │ ├── deps │ │ ├── Handlebars.dll │ │ ├── context.md │ │ ├── protobuf-net.Core.dll │ │ ├── protobuf-net.Reflection.dll │ │ └── protobuf-net.dll │ ├── logo.png │ └── model │ │ ├── ProtoField.cs │ │ ├── ProtoFile.cs │ │ ├── ProtoHack.cs │ │ ├── ProtoMessage.cs │ │ ├── ProtoMethod.cs │ │ ├── ProtoService.cs │ │ └── context.md ├── Proto.Cluster.Consul │ ├── ConsulProvider.cs │ ├── ConsulProviderConfig.cs │ ├── Proto.Cluster.Consul.csproj │ └── context.md ├── Proto.Cluster.Dashboard │ ├── App.razor │ ├── DashboardSettings.cs │ ├── Extensions.cs │ ├── Pages │ │ ├── ActorDiagram.razor │ │ ├── ClusterDiagnostics.razor │ │ ├── ClusterOverview.razor │ │ ├── ClusterState.razor │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.razor │ │ ├── _Host.cshtml │ │ ├── _Layout.cshtml │ │ └── context.md │ ├── Proto.Cluster.Dashboard.csproj │ ├── Shared │ │ ├── ActorDiagnosticsWidget.razor │ │ ├── AggregatedActors.razor │ │ ├── AnyStateWidget.razor │ │ ├── ClusterTopologyWidget.razor │ │ ├── ExpanderButton.razor │ │ ├── InfoBlock.razor │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── MemberCard.razor │ │ ├── MemberHeartbeatWidget.razor │ │ ├── MemberSearch.razor │ │ ├── MemberStateWidget.razor │ │ ├── NavMenu.razor │ │ ├── ProtoNavLink.razor │ │ ├── ReadyForRebalanceWidget.razor │ │ ├── RebalanceCompletedWidget.razor │ │ └── context.md │ ├── TreeNode.cs │ ├── _Imports.razor │ ├── context.md │ └── wwwroot │ │ ├── context.md │ │ └── protosymbol.png ├── Proto.Cluster.Etcd │ ├── EtcdProvider.cs │ ├── EtcdProviderConfig.cs │ ├── Proto.Cluster.Etcd.csproj │ └── context.md ├── Proto.Cluster.Identity.MongoDb │ ├── MongoIdentityStorage.cs │ ├── PidLookupEntity.cs │ ├── Proto.Cluster.Identity.MongoDb.csproj │ └── context.md ├── Proto.Cluster.Identity.Redis │ ├── Proto.Cluster.Identity.Redis.csproj │ ├── RedisIdentityStorage.cs │ └── context.md ├── Proto.Cluster.Kubernetes │ ├── KubernetesClusterMonitor.cs │ ├── KubernetesExtensions.cs │ ├── KubernetesHelper.cs │ ├── KubernetesProvider.cs │ ├── KubernetesProviderConfig.cs │ ├── Messages.cs │ ├── Proto.Cluster.Kubernetes.csproj │ ├── ProtoLabels.cs │ └── context.md ├── Proto.Cluster.SeedNode.MongoDb │ ├── MongoDbSeedNodeDiscovery.cs │ ├── Proto.Cluster.SeedNode.MongoDb.csproj │ ├── ProtoActorMember.cs │ └── context.md ├── Proto.Cluster.SeedNode.Redis │ ├── Proto.Cluster.SeedNode.Redis.csproj │ ├── RedisSeedNodeDiscovery.cs │ └── context.md ├── Proto.Cluster.TestProvider │ ├── AgentServiceRegistration.cs │ ├── InMemAgent.cs │ ├── Messages.cs │ ├── Proto.Cluster.TestProvider.csproj │ ├── QueryOptions.cs │ ├── TestProvider.cs │ ├── TestProviderOptions.cs │ └── context.md ├── Proto.Cluster │ ├── ActivatedClusterKind.cs │ ├── Cache │ │ ├── CacheInvalidationExtensions.cs │ │ ├── ClusterCacheInvalidation.cs │ │ └── context.md │ ├── Cluster.cs │ ├── ClusterConfig.cs │ ├── ClusterContext.cs │ ├── ClusterContextConfig.cs │ ├── ClusterContracts.proto │ ├── ClusterDiagnostics.cs │ ├── ClusterExtension.cs │ ├── ClusterExtensions.cs │ ├── ClusterInitialization.cs │ ├── ClusterKind.cs │ ├── ClusterMetricsCollector.cs │ ├── DefaultClusterContext.cs │ ├── DiagnosticsContracts.cs │ ├── Gossip │ │ ├── Consensus.cs │ │ ├── ConsensusCheckBuilder.cs │ │ ├── ConsensusChecks.cs │ │ ├── ConsensusEvaluator.cs │ │ ├── Extensions.cs │ │ ├── Gossip.cs │ │ ├── GossipActor.cs │ │ ├── GossipDefaults.cs │ │ ├── GossipKeyValue.cs │ │ ├── GossipKeys.cs │ │ ├── GossipSender.cs │ │ ├── GossipStateManagement.cs │ │ ├── Gossiper.Consensus.cs │ │ ├── Gossiper.Dissemination.cs │ │ ├── Gossiper.StateQueries.cs │ │ ├── Gossiper.cs │ │ ├── GossiperFactory.cs │ │ ├── GossiperLogMessages.cs │ │ ├── IConsensusCheckDefinition.cs │ │ ├── IDeltaValue.cs │ │ ├── IGossip.cs │ │ ├── IGossipTransport.cs │ │ ├── IRandomProvider.cs │ │ ├── MemberStateDelta.cs │ │ ├── MemberStateDeltaBuilder.cs │ │ ├── Messages.cs │ │ ├── RandomOrderExtensions.cs │ │ ├── SystemRandomProvider.cs │ │ └── context.md │ ├── GossipContracts.proto │ ├── Grain │ │ ├── ContextExtensions.cs │ │ ├── GrainException.cs │ │ ├── GrainRequest.cs │ │ ├── GrainRequestMessage.cs │ │ ├── GrainResponse.cs │ │ ├── GrainResponseMessage.cs │ │ └── context.md │ ├── GrainContracts.proto │ ├── Healthchecks │ │ ├── Healthcheck.cs │ │ └── context.md │ ├── IClusterProvider.cs │ ├── Identity │ │ ├── GetPid.cs │ │ ├── IIdentityLookup.cs │ │ ├── IIdentityStorage.cs │ │ ├── IdentityActivatorProxy.cs │ │ ├── IdentityIsBlockedException.cs │ │ ├── IdentityMetrics.cs │ │ ├── IdentityStorageLookup.cs │ │ ├── IdentityStoragePlacementActor.cs │ │ ├── IdentityStorageWorker.cs │ │ └── context.md │ ├── InternalsVisibleTo.cs │ ├── Member.cs │ ├── Membership │ │ ├── ClusterTopologyBuilder.cs │ │ ├── ConsensusManager.cs │ │ ├── GossipMemberStrategy.cs │ │ ├── IMemberList.cs │ │ ├── ImmutableMemberSet.cs │ │ ├── LeaderElection.cs │ │ ├── LocalAffinityExtensions.cs │ │ ├── LocalAffinityOptions.cs │ │ ├── LocalAffinityStrategy.cs │ │ ├── MemberList.cs │ │ ├── MemberListLogMessages.cs │ │ ├── MemberStrategy.cs │ │ ├── MemberStrategyManager.cs │ │ ├── MetaMember.cs │ │ ├── RoundRobinMemberSelector.cs │ │ └── context.md │ ├── Messages │ │ ├── Messages.cs │ │ └── context.md │ ├── Metrics │ │ ├── ClusterMetrics.cs │ │ └── context.md │ ├── Partition │ │ ├── Extensions.cs │ │ ├── HandoverSink.cs │ │ ├── HandoverSource.cs │ │ ├── IndexSet.cs │ │ ├── MemberHashRing.cs │ │ ├── PartitionActivationLifecycle.cs │ │ ├── PartitionConfig.cs │ │ ├── PartitionIdentityActor.cs │ │ ├── PartitionIdentityLookup.cs │ │ ├── PartitionIdentityRebalanceWorker.cs │ │ ├── PartitionManager.cs │ │ ├── PartitionMemberSelector.cs │ │ ├── PartitionPlacementActor.cs │ │ ├── PartitionPlacementRebalance.cs │ │ ├── Rendezvous.cs │ │ └── context.md │ ├── PartitionActivator │ │ ├── PartitionActivatorActor.cs │ │ ├── PartitionActivatorLookup.cs │ │ ├── PartitionActivatorManager.cs │ │ ├── PartitionActivatorSelector.cs │ │ ├── RendezvousFast.cs │ │ └── context.md │ ├── PidCache.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── context.md │ ├── Proto.Cluster.csproj │ ├── ProtoActorLifecycleHost.cs │ ├── PubSub │ │ ├── BatchingProducer.cs │ │ ├── BatchingProducerConfig.cs │ │ ├── DeliverBatchRequest.cs │ │ ├── IPublisher.cs │ │ ├── PubSubAutoRespondBatch.cs │ │ ├── PubSubBatch.cs │ │ ├── PubSubConfig.cs │ │ ├── PubSubDeliveryException.cs │ │ ├── PubSubExtension.cs │ │ ├── PubSubExtensions.cs │ │ ├── PubSubMemberDeliveryActor.cs │ │ ├── Publisher.cs │ │ ├── PublisherConfig.cs │ │ ├── PublishingErrorDecision.cs │ │ ├── TopicActor.cs │ │ └── context.md │ ├── PubSubContracts.proto │ ├── Seed │ │ ├── FixedServerSeedNodeDiscovery.cs │ │ ├── ISeedNodeDiscovery.cs │ │ ├── Messages.cs │ │ ├── SeedClientNodeActor.cs │ │ ├── SeedNodeActor.cs │ │ ├── SeedNodeClusterProvider.cs │ │ ├── SeedNodeClusterProviderOptions.cs │ │ └── context.md │ ├── SeedContracts.proto │ ├── ServiceCollectionExtensions.cs │ ├── SingleNode │ │ ├── SingleNodeActivatorActor.cs │ │ ├── SingleNodeLookup.cs │ │ ├── SingleNodeProvider.cs │ │ └── context.md │ └── context.md ├── Proto.OpenTelemetry │ ├── OpenTelemetryActorContextDecorator.cs │ ├── OpenTelemetryHelpers.cs │ ├── OpenTelemetryMethodsDecorators.cs │ ├── OpenTelemetryMetricsExtensions.cs │ ├── OpenTelemetryRootContextDecorator.cs │ ├── OpenTelemetryTracingExtensions.cs │ ├── Proto.OpenTelemetry.csproj │ └── context.md ├── Proto.Persistence.Couchbase │ ├── CouchbaseProvider.cs │ ├── Event.cs │ ├── Proto.Persistence.Couchbase.csproj │ ├── Snapshot.cs │ └── context.md ├── Proto.Persistence.DynamoDB │ ├── DynamoDBExtensions.cs │ ├── DynamoDBHelper.cs │ ├── DynamoDBProvider.cs │ ├── DynamoDBProviderOptions.cs │ ├── Extensions.cs │ ├── Proto.Persistence.DynamoDB.csproj │ ├── README.md │ └── context.md ├── Proto.Persistence.Marten │ ├── Event.cs │ ├── MartenProvider.cs │ ├── Proto.Persistence.Marten.csproj │ ├── Snapshot.cs │ └── context.md ├── Proto.Persistence.MongoDB │ ├── Event.cs │ ├── MongoDBProvider.cs │ ├── Proto.Persistence.MongoDB.csproj │ ├── Snapshot.cs │ └── context.md ├── Proto.Persistence.RavenDB │ ├── DeleteEventIndex.cs │ ├── DeleteSnapshotIndex.cs │ ├── Event.cs │ ├── Proto.Persistence.RavenDB.csproj │ ├── RavenDBProvider.cs │ ├── Snapshot.cs │ └── context.md ├── Proto.Persistence.SqlServer │ ├── Event.cs │ ├── Proto.Persistence.SqlServer.csproj │ ├── Snapshot.cs │ ├── SqlServerProvider.cs │ └── context.md ├── Proto.Persistence.Sqlite │ ├── Event.cs │ ├── Proto.Persistence.Sqlite.csproj │ ├── Snapshot.cs │ ├── SqliteProvider.cs │ └── context.md ├── Proto.Persistence │ ├── IProvider.cs │ ├── ISnapshotStrategy.cs │ ├── Messages.cs │ ├── Persistence.cs │ ├── Proto.Persistence.csproj │ ├── SnapshotStrategies │ │ ├── EventTypeStrategy.cs │ │ ├── IntervalStrategy.cs │ │ ├── TimeStrategy.cs │ │ └── context.md │ └── context.md ├── Proto.Remote │ ├── Activator.cs │ ├── BlockList.cs │ ├── Endpoints │ │ ├── BlockedEndpoint.cs │ │ ├── ClientConnectionMode.cs │ │ ├── ClientRemoteEndpoint.cs │ │ ├── ConnectionRunnerLogMessages.cs │ │ ├── EndpointManager.cs │ │ ├── EndpointManagerLogMessages.cs │ │ ├── EndpointWriterOptions.cs │ │ ├── IConnectionMode.cs │ │ ├── IRemoteEndpoint.cs │ │ ├── MessageBatchFactory.cs │ │ ├── MessageBatchFactoryLogMessages.cs │ │ ├── README.md │ │ ├── RemoteEndpointBase.cs │ │ ├── RemoteMessageHandler.cs │ │ ├── RemotingGrpcService.cs │ │ ├── Runner │ │ │ ├── ConnectionReader.cs │ │ │ ├── ConnectionRunner.cs │ │ │ ├── ConnectionWriter.cs │ │ │ ├── RemoteStreamProcessor.cs │ │ │ └── context.md │ │ ├── ServerConnectionMode.cs │ │ ├── ServerConnector.cs │ │ ├── ServerRemoteEndpoint.cs │ │ └── context.md │ ├── Extensions.cs │ ├── GrpcNet │ │ ├── GrpcNetClientRemote.cs │ │ ├── GrpcNetExtensions.cs │ │ ├── GrpcNetRemote.cs │ │ ├── HostedGrpcNetRemote.cs │ │ ├── RemoteHostedService.cs │ │ └── context.md │ ├── Healthchecks │ │ ├── Healthcheck.cs │ │ └── context.md │ ├── IBlockList.cs │ ├── IRemote.cs │ ├── IRemoteExtensions.cs │ ├── IRemotePriorityMessage.cs │ ├── InternalsVisibleTo.cs │ ├── Messages.cs │ ├── Metrics │ │ ├── RemoteMetrics.cs │ │ └── context.md │ ├── PidExtensions.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── context.md │ ├── Proto.Remote.csproj │ ├── Protos.proto │ ├── RemoteConfig.cs │ ├── RemoteConfigExtensions.cs │ ├── RemoteProcess.cs │ ├── ResponseStatusCode.cs │ ├── Serialization │ │ ├── ForcedSerializationSenderMiddleware.cs │ │ ├── ICachedSerialization.cs │ │ ├── IMessageSurrogate.cs │ │ ├── ISerializer.cs │ │ ├── JsonSerializer.cs │ │ ├── ProtobufSerializer.cs │ │ ├── Serialization.cs │ │ └── context.md │ └── context.md ├── Proto.TestKit │ ├── ActorSystemTestProbeExtensions.cs │ ├── ClusterTestKitExtensions.cs │ ├── GossipNetworkPartition.cs │ ├── ITestProbe.cs │ ├── MessageAndSender.cs │ ├── ProbeMailboxStatistics.cs │ ├── PropsTestMailboxStatsExtensions.cs │ ├── PropsTestProbeExtensions.cs │ ├── Proto.TestKit.csproj │ ├── README.md │ ├── TestKit.cs │ ├── TestKitException.cs │ ├── TestMailboxStats.cs │ ├── TestProbe.cs │ └── context.md └── context.md └── tests ├── Directory.Build.props ├── Directory.Build.targets ├── Proto.Actor.Tests ├── ActorMetricsTests.cs ├── ActorTestBase.cs ├── ActorTests.cs ├── AssemblyInfo.cs ├── BehaviorTests.cs ├── CaptureContextTests.cs ├── DeadLetterResponseTests.cs ├── DeduplicationContextTests.cs ├── DependencyInjection │ ├── DependencyInjectionTests.cs │ └── context.md ├── Diagnostics │ ├── DiagnosticsTests.cs │ └── context.md ├── DisposableActorTests.cs ├── EventStreamTests.cs ├── Extensions │ ├── ExtensionTests.cs │ └── context.md ├── FunctionActorTests.cs ├── Futures │ ├── BaseFutureTests.cs │ ├── BatchFutureTests.cs │ ├── FutureProcessTests.cs │ ├── FutureTests.cs │ ├── SharedFutureBugTests.cs │ ├── SharedFutureTests.cs │ └── context.md ├── GuardianProcessTests.cs ├── Headers │ ├── MessageHeaderTests.cs │ └── context.md ├── LoggingExtensionTests.cs ├── Mailbox │ ├── EscalateFailureTests.cs │ ├── MailboxQueuesTests.cs │ ├── MailboxSchedulingTests.cs │ ├── MailboxStatisticsTests.cs │ ├── MessageBatchTests.cs │ ├── NonBlockingBoundedMailboxTests.cs │ └── context.md ├── MiddlewareTests.cs ├── ObservableGaugeWrapperTests.cs ├── PIDTests.cs ├── PoisonTests.cs ├── ProcessRegistryTests.cs ├── PropsTests.cs ├── Proto.Actor.Tests.csproj ├── ReceiveTimeoutTests.cs ├── ReenterAfterExtensionsDecoratorTests.cs ├── ReenterTests.cs ├── Router │ ├── BroadcastGroupTests.cs │ ├── BroadcastPoolRouterTests.cs │ ├── ConsistentHashGroupTests.cs │ ├── ConsistentHashPoolRouterTests.cs │ ├── HashRingTests.cs │ ├── PoolRouterTests.cs │ ├── RandomGroupRouterTests.cs │ ├── RoundRobinGroupTests.cs │ ├── RoundRobinPoolRouterTests.cs │ └── context.md ├── SchedulerTests.cs ├── SpawnTests.cs ├── StashingTests.cs ├── StoreTests.cs ├── SupervisionTests_ActorSupervisorStrategy.cs ├── SupervisionTests_AllForOne.cs ├── SupervisionTests_AlwaysRestart.cs ├── SupervisionTests_ExponentialBackoff.cs ├── SupervisionTests_OneForOne.cs ├── TestProbeAsyncTests.cs ├── TimerExtensionsTests.cs ├── UnknownSystemMessageTests.cs ├── Utils │ ├── RetryTests.cs │ ├── ThrottleTests.cs │ └── context.md ├── WatchTests.cs └── context.md ├── Proto.Analyzers.Tests ├── AnalyzerTest.cs ├── AssembliesUnderTest.cs ├── CodeFixProviderTests.cs ├── Diagnostics │ ├── PoisonSelfAnalyzerTests.cs │ ├── TaskMessageAnalyzerTests.cs │ └── context.md ├── Proto.Analyzers.Tests.csproj ├── Usings.cs └── context.md ├── Proto.Cluster.CodeGen.Tests ├── ExpectedOutput.cs ├── ExpectedOutputPackageless.cs ├── OutputFileNameTests.cs ├── PathPolyfillTests.cs ├── Proto.Cluster.CodeGen.Tests.csproj ├── ProtoGrainGenerationTests.cs ├── bar.proto ├── context.md ├── foo.proto ├── foo_packageless.proto ├── invalid.proto └── invalid2.proto ├── Proto.Cluster.Identity.Tests ├── AssemblyInfo.cs ├── FailureInjectionStorage.cs ├── IdentityStorageLogging.cs ├── IdentityStorageTests.cs ├── Proto.Cluster.Identity.Tests.csproj ├── appsettings.json ├── context.md └── docker-compose.yml ├── Proto.Cluster.MongoIdentity.Tests ├── AssemblyInfo.cs ├── MongoIdentityTests.cs ├── Proto.Cluster.MongoIdentity.Tests.csproj ├── appsettings.json ├── context.md └── docker-compose.yml ├── Proto.Cluster.PartitionIdentity.Tests ├── HandoverSinkTests.cs ├── PartitionIdentityTests.cs ├── Proto.Cluster.PartitionIdentity.Tests.csproj └── context.md ├── Proto.Cluster.PubSub.Tests ├── InMemorySubscribersStore.cs ├── Proto.Cluster.PubSub.Tests.csproj ├── PubSubBatchingProducerTests.cs ├── PubSubClientTests.cs ├── PubSubClusterFixture.cs ├── PubSubDefaultTopicRegistrationTests.cs ├── PubSubMemberTests.cs ├── PubSubTests.cs └── context.md ├── Proto.Cluster.RedisIdentity.Tests ├── AssemblyInfo.cs ├── Proto.Cluster.RedisIdentity.Tests.csproj ├── RedisIdentityTests.cs ├── appsettings.json ├── context.md └── docker-compose.yml ├── Proto.Cluster.Tests ├── AssemblyInfo.cs ├── ClusterFixture.cs ├── ClusterTestBase.cs ├── ClusterTests.cs ├── ClusterTestsWithLocalAffinity.cs ├── ClusterTopologyBuilderTests.cs ├── ConcurrencyVerificationActor.cs ├── ConsensusEvaluatorTests.cs ├── ConsulTests.cs ├── DeterministicRandomProvider.cs ├── EchoActor.cs ├── ExpectUpdatedTopologyConsensusTests.cs ├── Extensions.cs ├── ForcedSerializationTests.cs ├── GithubActionsReporter.cs ├── GossipConsensusTests.cs ├── GossipCoreTests.cs ├── GossipDisseminationTests.cs ├── GossipRandomOrderingTests.cs ├── GossipRequestValidationTests.cs ├── GossipStateManagementTests.cs ├── GossipStateQueryTests.cs ├── GossipTests.cs ├── GossipTransportTests.cs ├── GracefulLeaveTests.cs ├── InMemorySubscribersStore.cs ├── LegacyTimeoutTests.cs ├── MemberStateDeltaBuilderTests.cs ├── OrderedDeliveryTests.cs ├── PartitionConsensusTests.cs ├── PartitionMiddlewareTests.cs ├── PidCacheInvalidationTests.cs ├── PidCacheTests.cs ├── Proto.Cluster.Tests.csproj ├── RedundantGossipTests.cs ├── RemoteGossipTests.cs ├── RetryOnDeadLetterTests.cs ├── TimeoutTests.cs ├── UnreachableSubscriberTests.cs ├── context.md ├── docker-compose.yml └── messages.proto ├── Proto.OpenTelemetry.Tests ├── ActivityFixture.cs ├── OpenTelemetryMetricsTests.cs ├── OpenTelemetryTracingTests.cs ├── Proto.OpenTelemetry.Tests.csproj ├── context.md └── messages.proto ├── Proto.Persistence.Tests ├── AssemblyInfo.cs ├── ContainersFixture.cs ├── ExamplePersistentActorTests.cs ├── InMemoryProvider.cs ├── PersistenceWithSnapshotStrategiesTests.cs ├── Proto.Persistence.Tests.csproj ├── SnapshotStrategies │ ├── EventTypeStrategyTests.cs │ ├── IntervalStrategyTests.cs │ ├── TimeStrategyTests.cs │ └── context.md └── context.md ├── Proto.Remote.Tests.Messages ├── Proto.Remote.Tests.Messages.csproj ├── Protos.proto └── context.md ├── Proto.Remote.Tests ├── AssemblyInfo.cs ├── ConnectionFailTests.cs ├── DisplayTestMethodNameAttribute.cs ├── EchoActor.cs ├── ForcedSerializationTests.cs ├── LargeMessageEnvelopeTests.cs ├── Proto.Remote.Tests.csproj ├── RemoteFixture.cs ├── RemoteKindsRegistrationTests.cs ├── RemoteStreamProcessorTests.cs ├── RemoteTests.cs ├── RemoteTests │ ├── GrpcNetClientWithGrpcNetServerTests.cs │ ├── GrpcNetClientWithHostedGrpcNetServerTests.cs │ ├── GrpcNetClient_Client_With_GrpcNet_ServerTests.cs │ ├── GrpcNetClient_Client_With_HostedGrpcNet_ServerTests.cs │ ├── HostedGrpcNetClientWithGrpcNetServerTests.cs │ ├── HostedGrpcNetClientWithHostedGrpcNetServerTests.cs │ ├── HostedGrpcNetWithCustomeSerializerTests.cs │ ├── WithJsonSerializeAsDefaultTests.cs │ └── context.md ├── SerializationTests.cs └── context.md ├── Proto.TestFixtures ├── DoNothingActor.cs ├── DoNothingSupervisorStrategy.cs ├── Proto.TestFixtures.csproj ├── Receivers.cs ├── TestConfig.cs ├── TestDispatcher.cs ├── TestMailboxHandler.cs ├── TestMessageWithTaskCompletionSource.cs ├── TestProcess.cs └── context.md ├── Proto.TestKit.Tests ├── AwaitConditionAsyncTests.cs ├── ProbeMiddlewareTests.cs ├── Proto.TestKit.Tests.csproj ├── TestProbeAsyncTests.cs └── context.md └── context.md /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/ISSUE_TEMPLATE/ask_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/ISSUE_TEMPLATE/context.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/context.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/workflows/build-dev.yml -------------------------------------------------------------------------------- /.github/workflows/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/workflows/context.md -------------------------------------------------------------------------------- /.github/workflows/dev-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/workflows/dev-tests.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/ahoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.images/ahoy.svg -------------------------------------------------------------------------------- /.images/asynkron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.images/asynkron.png -------------------------------------------------------------------------------- /.images/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.images/context.md -------------------------------------------------------------------------------- /.images/etteplan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.images/etteplan.png -------------------------------------------------------------------------------- /.images/ubiquitous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.images/ubiquitous.png -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/.mergify.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLUSTER_MEMBERSHIP_GOSSIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/CLUSTER_MEMBERSHIP_GOSSIP.md -------------------------------------------------------------------------------- /CODEBASE_OVERVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/CODEBASE_OVERVIEW.md -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /EVENTSTREAM_EVENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/EVENTSTREAM_EVENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/LICENSE -------------------------------------------------------------------------------- /ProtoActor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/ProtoActor.sln -------------------------------------------------------------------------------- /ProtoActor.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/ProtoActor.sln.DotSettings -------------------------------------------------------------------------------- /ProtoActor.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/ProtoActor.snk -------------------------------------------------------------------------------- /ProtoActorCoreOnly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/ProtoActorCoreOnly.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/Terminology.md -------------------------------------------------------------------------------- /benchmarks/AutoClusterBenchmark/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/AutoClusterBenchmark/Configuration.cs -------------------------------------------------------------------------------- /benchmarks/AutoClusterBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/AutoClusterBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/AutoClusterBenchmark/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/AutoClusterBenchmark/Runner.cs -------------------------------------------------------------------------------- /benchmarks/AutoClusterBenchmark/WorkerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/AutoClusterBenchmark/WorkerActor.cs -------------------------------------------------------------------------------- /benchmarks/AutoClusterBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/AutoClusterBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/AutoClusterBenchmark/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/AutoClusterBenchmark/messages.proto -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/ClrMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/ClrMessages.cs -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/Configuration.cs -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/DockerSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/DockerSupport.cs -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/Runner.cs -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/WorkerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/WorkerActor.cs -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/docker-compose.yml -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/logs/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/logs/context.md -------------------------------------------------------------------------------- /benchmarks/ClusterBenchmark/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterBenchmark/messages.proto -------------------------------------------------------------------------------- /benchmarks/ClusterMicroBenchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterMicroBenchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarks/ClusterMicroBenchmarks/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ClusterMicroBenchmarks/context.md -------------------------------------------------------------------------------- /benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /benchmarks/EndpointManagerTest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/EndpointManagerTest/Dockerfile -------------------------------------------------------------------------------- /benchmarks/EndpointManagerTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/EndpointManagerTest/Program.cs -------------------------------------------------------------------------------- /benchmarks/EndpointManagerTest/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/EndpointManagerTest/context.md -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/GossipBenchmark.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/GossipBenchmark.sln -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Messages/Protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Messages/Protos.proto -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Messages/context.md -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Node1/Node1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Node1/Node1.csproj -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Node1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Node1/Program.cs -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Node1/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Node1/context.md -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Node2/Node2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Node2/Node2.csproj -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Node2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Node2/Program.cs -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/Node2/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/Node2/context.md -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipBenchmark/docker-compose.yml -------------------------------------------------------------------------------- /benchmarks/GossipBenchmark/run.sh: -------------------------------------------------------------------------------- 1 | docker-compose up --build -------------------------------------------------------------------------------- /benchmarks/GossipDecoder/GossipDecoder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipDecoder/GossipDecoder.csproj -------------------------------------------------------------------------------- /benchmarks/GossipDecoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipDecoder/Program.cs -------------------------------------------------------------------------------- /benchmarks/GossipDecoder/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/GossipDecoder/context.md -------------------------------------------------------------------------------- /benchmarks/HostedService/HostedService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/HostedService.csproj -------------------------------------------------------------------------------- /benchmarks/HostedService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/Program.cs -------------------------------------------------------------------------------- /benchmarks/HostedService/Properties/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/Properties/context.md -------------------------------------------------------------------------------- /benchmarks/HostedService/ProtoHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/ProtoHost.cs -------------------------------------------------------------------------------- /benchmarks/HostedService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/Startup.cs -------------------------------------------------------------------------------- /benchmarks/HostedService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/appsettings.json -------------------------------------------------------------------------------- /benchmarks/HostedService/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/HostedService/context.md -------------------------------------------------------------------------------- /benchmarks/InprocessBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/InprocessBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/InprocessBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/InprocessBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/KubernetesDiagnostics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/KubernetesDiagnostics/Program.cs -------------------------------------------------------------------------------- /benchmarks/KubernetesDiagnostics/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/KubernetesDiagnostics/build.sh -------------------------------------------------------------------------------- /benchmarks/KubernetesDiagnostics/build2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/KubernetesDiagnostics/build2.sh -------------------------------------------------------------------------------- /benchmarks/KubernetesDiagnostics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/KubernetesDiagnostics/context.md -------------------------------------------------------------------------------- /benchmarks/KubernetesDiagnostics/redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/KubernetesDiagnostics/redis.yaml -------------------------------------------------------------------------------- /benchmarks/KubernetesDiagnostics/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/KubernetesDiagnostics/service.yaml -------------------------------------------------------------------------------- /benchmarks/MailboxBenchmark/MailboxBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/MailboxBenchmark/MailboxBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/MailboxBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/MailboxBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/MailboxBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/MailboxBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/PingPongBenchmark/PingActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PingPongBenchmark/PingActor.cs -------------------------------------------------------------------------------- /benchmarks/PingPongBenchmark/PongActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PingPongBenchmark/PongActor.cs -------------------------------------------------------------------------------- /benchmarks/PingPongBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PingPongBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/PingPongBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PingPongBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/PropsBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PropsBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/PropsBenchmark/PropsBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PropsBenchmark/PropsBenchmark.csproj -------------------------------------------------------------------------------- /benchmarks/PropsBenchmark/SomeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PropsBenchmark/SomeState.cs -------------------------------------------------------------------------------- /benchmarks/PropsBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/PropsBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/ProtoActorBenchmarks/LongBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ProtoActorBenchmarks/LongBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/ProtoActorBenchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ProtoActorBenchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarks/ProtoActorBenchmarks/TestActors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ProtoActorBenchmarks/TestActors.cs -------------------------------------------------------------------------------- /benchmarks/ProtoActorBenchmarks/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/ProtoActorBenchmarks/context.md -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Messages/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Messages/Messages.cs -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Messages/Protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Messages/Protos.proto -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Messages/context.md -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Node1/Node1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Node1/Node1.csproj -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Node1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Node1/Program.cs -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Node1/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Node1/context.md -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Node2/Node2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Node2/Node2.csproj -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Node2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Node2/Program.cs -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/Node2/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/Node2/context.md -------------------------------------------------------------------------------- /benchmarks/RemoteBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/RemoteBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Client/Program.cs -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Client/Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Client/Tests/context.md -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Client/appsettings.json -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Client/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Client/context.md -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Client/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Client/docker-compose.yml -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Client/protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Client/protos.proto -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Server/Program.cs -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Server/Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Server/Tests/context.md -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Server/appsettings.json -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Server/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Server/context.md -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Server/docker-compose.yml -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/Server/protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/Server/protos.proto -------------------------------------------------------------------------------- /benchmarks/SkyriseMini/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SkyriseMini/context.md -------------------------------------------------------------------------------- /benchmarks/SpawnBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SpawnBenchmark/Program.cs -------------------------------------------------------------------------------- /benchmarks/SpawnBenchmark/SpawnBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SpawnBenchmark/SpawnBenchmark.csproj -------------------------------------------------------------------------------- /benchmarks/SpawnBenchmark/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/SpawnBenchmark/context.md -------------------------------------------------------------------------------- /benchmarks/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/benchmarks/context.md -------------------------------------------------------------------------------- /cluster.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/cluster.drawio -------------------------------------------------------------------------------- /context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/context.md -------------------------------------------------------------------------------- /dockerfile-reader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/dockerfile-reader -------------------------------------------------------------------------------- /dockerfile-sender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/dockerfile-sender -------------------------------------------------------------------------------- /examples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/Directory.Build.props -------------------------------------------------------------------------------- /examples/actor.context-decorators/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.context-decorators/Program.cs -------------------------------------------------------------------------------- /examples/actor.context-decorators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.context-decorators/README.md -------------------------------------------------------------------------------- /examples/actor.context-decorators/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.context-decorators/context.md -------------------------------------------------------------------------------- /examples/actor.deadletter-throttling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.deadletter-throttling/Program.cs -------------------------------------------------------------------------------- /examples/actor.deadletter-throttling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.deadletter-throttling/README.md -------------------------------------------------------------------------------- /examples/actor.deadletter-throttling/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.deadletter-throttling/context.md -------------------------------------------------------------------------------- /examples/actor.dependency-injection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.dependency-injection/Program.cs -------------------------------------------------------------------------------- /examples/actor.dependency-injection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.dependency-injection/README.md -------------------------------------------------------------------------------- /examples/actor.dependency-injection/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.dependency-injection/Startup.cs -------------------------------------------------------------------------------- /examples/actor.dependency-injection/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.dependency-injection/context.md -------------------------------------------------------------------------------- /examples/actor.event-stream-topics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream-topics/Program.cs -------------------------------------------------------------------------------- /examples/actor.event-stream-topics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream-topics/README.md -------------------------------------------------------------------------------- /examples/actor.event-stream-topics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream-topics/context.md -------------------------------------------------------------------------------- /examples/actor.event-stream/EventStream.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream/EventStream.csproj -------------------------------------------------------------------------------- /examples/actor.event-stream/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream/Program.cs -------------------------------------------------------------------------------- /examples/actor.event-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream/README.md -------------------------------------------------------------------------------- /examples/actor.event-stream/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.event-stream/context.md -------------------------------------------------------------------------------- /examples/actor.futures/Futures.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.futures/Futures.csproj -------------------------------------------------------------------------------- /examples/actor.futures/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.futures/Program.cs -------------------------------------------------------------------------------- /examples/actor.futures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.futures/README.md -------------------------------------------------------------------------------- /examples/actor.futures/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.futures/context.md -------------------------------------------------------------------------------- /examples/actor.hello-world-fsharp/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world-fsharp/Program.fs -------------------------------------------------------------------------------- /examples/actor.hello-world-fsharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world-fsharp/README.md -------------------------------------------------------------------------------- /examples/actor.hello-world-fsharp/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world-fsharp/context.md -------------------------------------------------------------------------------- /examples/actor.hello-world/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world/HelloWorld.csproj -------------------------------------------------------------------------------- /examples/actor.hello-world/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world/Program.cs -------------------------------------------------------------------------------- /examples/actor.hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world/README.md -------------------------------------------------------------------------------- /examples/actor.hello-world/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.hello-world/context.md -------------------------------------------------------------------------------- /examples/actor.lifecycle-events/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.lifecycle-events/Program.cs -------------------------------------------------------------------------------- /examples/actor.lifecycle-events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.lifecycle-events/README.md -------------------------------------------------------------------------------- /examples/actor.lifecycle-events/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.lifecycle-events/context.md -------------------------------------------------------------------------------- /examples/actor.message-headers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.message-headers/Program.cs -------------------------------------------------------------------------------- /examples/actor.message-headers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.message-headers/README.md -------------------------------------------------------------------------------- /examples/actor.message-headers/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.message-headers/context.md -------------------------------------------------------------------------------- /examples/actor.metrics/ActorMetrics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/ActorMetrics.csproj -------------------------------------------------------------------------------- /examples/actor.metrics/Controllers/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/Controllers/context.md -------------------------------------------------------------------------------- /examples/actor.metrics/Messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/Messages.proto -------------------------------------------------------------------------------- /examples/actor.metrics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/Program.cs -------------------------------------------------------------------------------- /examples/actor.metrics/Properties/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/Properties/context.md -------------------------------------------------------------------------------- /examples/actor.metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/README.md -------------------------------------------------------------------------------- /examples/actor.metrics/RunDummyCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/RunDummyCluster.cs -------------------------------------------------------------------------------- /examples/actor.metrics/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/Startup.cs -------------------------------------------------------------------------------- /examples/actor.metrics/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/actor.metrics/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/appsettings.json -------------------------------------------------------------------------------- /examples/actor.metrics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/context.md -------------------------------------------------------------------------------- /examples/actor.metrics/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/docker-compose.yaml -------------------------------------------------------------------------------- /examples/actor.metrics/grafana/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/grafana/context.md -------------------------------------------------------------------------------- /examples/actor.metrics/grafana/datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/grafana/datasources.yml -------------------------------------------------------------------------------- /examples/actor.metrics/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.metrics/prometheus.yml -------------------------------------------------------------------------------- /examples/actor.middleware/Middleware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.middleware/Middleware.csproj -------------------------------------------------------------------------------- /examples/actor.middleware/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.middleware/Program.cs -------------------------------------------------------------------------------- /examples/actor.middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.middleware/README.md -------------------------------------------------------------------------------- /examples/actor.middleware/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.middleware/context.md -------------------------------------------------------------------------------- /examples/actor.open-telemetry/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.open-telemetry/Program.cs -------------------------------------------------------------------------------- /examples/actor.open-telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.open-telemetry/README.md -------------------------------------------------------------------------------- /examples/actor.open-telemetry/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.open-telemetry/context.md -------------------------------------------------------------------------------- /examples/actor.receive-timeout/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.receive-timeout/Program.cs -------------------------------------------------------------------------------- /examples/actor.receive-timeout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.receive-timeout/README.md -------------------------------------------------------------------------------- /examples/actor.receive-timeout/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.receive-timeout/context.md -------------------------------------------------------------------------------- /examples/actor.router/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.router/Program.cs -------------------------------------------------------------------------------- /examples/actor.router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.router/README.md -------------------------------------------------------------------------------- /examples/actor.router/Router.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.router/Router.csproj -------------------------------------------------------------------------------- /examples/actor.router/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.router/context.md -------------------------------------------------------------------------------- /examples/actor.saga/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Account.cs -------------------------------------------------------------------------------- /examples/actor.saga/AccountProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/AccountProxy.cs -------------------------------------------------------------------------------- /examples/actor.saga/Factories/TransferFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Factories/TransferFactory.cs -------------------------------------------------------------------------------- /examples/actor.saga/Factories/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Factories/context.md -------------------------------------------------------------------------------- /examples/actor.saga/InMemoryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/InMemoryProvider.cs -------------------------------------------------------------------------------- /examples/actor.saga/Internal/ForWithProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Internal/ForWithProgress.cs -------------------------------------------------------------------------------- /examples/actor.saga/Internal/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Internal/context.md -------------------------------------------------------------------------------- /examples/actor.saga/Messages/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Messages/Messages.cs -------------------------------------------------------------------------------- /examples/actor.saga/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Messages/context.md -------------------------------------------------------------------------------- /examples/actor.saga/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Program.cs -------------------------------------------------------------------------------- /examples/actor.saga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/README.md -------------------------------------------------------------------------------- /examples/actor.saga/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Runner.cs -------------------------------------------------------------------------------- /examples/actor.saga/Saga.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/Saga.csproj -------------------------------------------------------------------------------- /examples/actor.saga/TransferProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/TransferProcess.cs -------------------------------------------------------------------------------- /examples/actor.saga/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.saga/context.md -------------------------------------------------------------------------------- /examples/actor.scheduled-messages/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.scheduled-messages/Program.cs -------------------------------------------------------------------------------- /examples/actor.scheduled-messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.scheduled-messages/README.md -------------------------------------------------------------------------------- /examples/actor.scheduled-messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.scheduled-messages/context.md -------------------------------------------------------------------------------- /examples/actor.supervision-escalate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision-escalate/Program.cs -------------------------------------------------------------------------------- /examples/actor.supervision-escalate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision-escalate/README.md -------------------------------------------------------------------------------- /examples/actor.supervision-escalate/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision-escalate/context.md -------------------------------------------------------------------------------- /examples/actor.supervision/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision/Program.cs -------------------------------------------------------------------------------- /examples/actor.supervision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision/README.md -------------------------------------------------------------------------------- /examples/actor.supervision/Supervision.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision/Supervision.csproj -------------------------------------------------------------------------------- /examples/actor.supervision/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/actor.supervision/context.md -------------------------------------------------------------------------------- /examples/cluster.aspnet-grains/Node1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.aspnet-grains/Node1/Program.cs -------------------------------------------------------------------------------- /examples/cluster.aspnet-grains/Node1/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.aspnet-grains/Node1/context.md -------------------------------------------------------------------------------- /examples/cluster.aspnet-grains/Node2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.aspnet-grains/Node2/Program.cs -------------------------------------------------------------------------------- /examples/cluster.aspnet-grains/Node2/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.aspnet-grains/Node2/context.md -------------------------------------------------------------------------------- /examples/cluster.aspnet-grains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.aspnet-grains/README.md -------------------------------------------------------------------------------- /examples/cluster.aspnet-grains/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.aspnet-grains/context.md -------------------------------------------------------------------------------- /examples/cluster.dashboard-host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.dashboard-host/Program.cs -------------------------------------------------------------------------------- /examples/cluster.dashboard-host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.dashboard-host/README.md -------------------------------------------------------------------------------- /examples/cluster.dashboard-host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.dashboard-host/appsettings.json -------------------------------------------------------------------------------- /examples/cluster.dashboard-host/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.dashboard-host/context.md -------------------------------------------------------------------------------- /examples/cluster.event-stream-topics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.event-stream-topics/Program.cs -------------------------------------------------------------------------------- /examples/cluster.event-stream-topics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.event-stream-topics/README.md -------------------------------------------------------------------------------- /examples/cluster.event-stream-topics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.event-stream-topics/context.md -------------------------------------------------------------------------------- /examples/cluster.gossip/ClusterGossip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.gossip/ClusterGossip.csproj -------------------------------------------------------------------------------- /examples/cluster.gossip/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.gossip/Program.cs -------------------------------------------------------------------------------- /examples/cluster.gossip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.gossip/README.md -------------------------------------------------------------------------------- /examples/cluster.gossip/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.gossip/context.md -------------------------------------------------------------------------------- /examples/cluster.hello-world-grain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.hello-world-grain/README.md -------------------------------------------------------------------------------- /examples/cluster.hello-world-grain/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.hello-world-grain/context.md -------------------------------------------------------------------------------- /examples/cluster.hello-world-grain/run.sh: -------------------------------------------------------------------------------- 1 | docker-compose up --build -------------------------------------------------------------------------------- /examples/cluster.kubernetes-grains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.kubernetes-grains/README.md -------------------------------------------------------------------------------- /examples/cluster.kubernetes-grains/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.kubernetes-grains/context.md -------------------------------------------------------------------------------- /examples/cluster.kubernetes-hello-world/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.kubernetes-hello-world/build.sh -------------------------------------------------------------------------------- /examples/cluster.kubernetes-hello-world/sed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cluster.pubsub/ClusterPubSub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.pubsub/ClusterPubSub.csproj -------------------------------------------------------------------------------- /examples/cluster.pubsub/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.pubsub/Program.cs -------------------------------------------------------------------------------- /examples/cluster.pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.pubsub/README.md -------------------------------------------------------------------------------- /examples/cluster.pubsub/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.pubsub/context.md -------------------------------------------------------------------------------- /examples/cluster.pubsub/protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.pubsub/protos.proto -------------------------------------------------------------------------------- /examples/cluster.statistics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.statistics/Program.cs -------------------------------------------------------------------------------- /examples/cluster.statistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.statistics/README.md -------------------------------------------------------------------------------- /examples/cluster.statistics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/cluster.statistics/context.md -------------------------------------------------------------------------------- /examples/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/context.md -------------------------------------------------------------------------------- /examples/persistence.basic/Messages/Protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/persistence.basic/Messages/Protos.proto -------------------------------------------------------------------------------- /examples/persistence.basic/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/persistence.basic/Messages/context.md -------------------------------------------------------------------------------- /examples/persistence.basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/persistence.basic/README.md -------------------------------------------------------------------------------- /examples/persistence.basic/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/persistence.basic/context.md -------------------------------------------------------------------------------- /examples/remote.activate/Messages/Protos.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Messages/Protos.g.cs -------------------------------------------------------------------------------- /examples/remote.activate/Messages/Protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Messages/Protos.proto -------------------------------------------------------------------------------- /examples/remote.activate/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Messages/context.md -------------------------------------------------------------------------------- /examples/remote.activate/Node1/Node1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Node1/Node1.csproj -------------------------------------------------------------------------------- /examples/remote.activate/Node1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Node1/Program.cs -------------------------------------------------------------------------------- /examples/remote.activate/Node1/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Node1/context.md -------------------------------------------------------------------------------- /examples/remote.activate/Node2/Node2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Node2/Node2.csproj -------------------------------------------------------------------------------- /examples/remote.activate/Node2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Node2/Program.cs -------------------------------------------------------------------------------- /examples/remote.activate/Node2/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/Node2/context.md -------------------------------------------------------------------------------- /examples/remote.activate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/README.md -------------------------------------------------------------------------------- /examples/remote.activate/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.activate/context.md -------------------------------------------------------------------------------- /examples/remote.channels/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Client/Client.csproj -------------------------------------------------------------------------------- /examples/remote.channels/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Client/Program.cs -------------------------------------------------------------------------------- /examples/remote.channels/Client/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Client/context.md -------------------------------------------------------------------------------- /examples/remote.channels/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Common/Common.csproj -------------------------------------------------------------------------------- /examples/remote.channels/Common/Messages.cs: -------------------------------------------------------------------------------- 1 | namespace Common; 2 | 3 | public record MyMessage(int Value) 4 | { 5 | } -------------------------------------------------------------------------------- /examples/remote.channels/Common/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Common/context.md -------------------------------------------------------------------------------- /examples/remote.channels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/README.md -------------------------------------------------------------------------------- /examples/remote.channels/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Server/Program.cs -------------------------------------------------------------------------------- /examples/remote.channels/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Server/Server.csproj -------------------------------------------------------------------------------- /examples/remote.channels/Server/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/Server/context.md -------------------------------------------------------------------------------- /examples/remote.channels/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.channels/context.md -------------------------------------------------------------------------------- /examples/remote.chat-example/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/Client/Program.cs -------------------------------------------------------------------------------- /examples/remote.chat-example/Client/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/Client/context.md -------------------------------------------------------------------------------- /examples/remote.chat-example/Messages/Chat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/Messages/Chat.proto -------------------------------------------------------------------------------- /examples/remote.chat-example/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/Messages/context.md -------------------------------------------------------------------------------- /examples/remote.chat-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/README.md -------------------------------------------------------------------------------- /examples/remote.chat-example/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/Server/Program.cs -------------------------------------------------------------------------------- /examples/remote.chat-example/Server/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/Server/context.md -------------------------------------------------------------------------------- /examples/remote.chat-example/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.chat-example/context.md -------------------------------------------------------------------------------- /examples/remote.open-telemetry-tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.open-telemetry-tracing/README.md -------------------------------------------------------------------------------- /examples/remote.tls/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Client/Client.csproj -------------------------------------------------------------------------------- /examples/remote.tls/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Client/Program.cs -------------------------------------------------------------------------------- /examples/remote.tls/Client/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Client/context.md -------------------------------------------------------------------------------- /examples/remote.tls/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Common/Common.csproj -------------------------------------------------------------------------------- /examples/remote.tls/Common/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Common/Messages.cs -------------------------------------------------------------------------------- /examples/remote.tls/Common/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Common/context.md -------------------------------------------------------------------------------- /examples/remote.tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/README.md -------------------------------------------------------------------------------- /examples/remote.tls/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Server/Program.cs -------------------------------------------------------------------------------- /examples/remote.tls/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Server/Server.csproj -------------------------------------------------------------------------------- /examples/remote.tls/Server/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/Server/context.md -------------------------------------------------------------------------------- /examples/remote.tls/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/examples/remote.tls/context.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/global.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logo.png -------------------------------------------------------------------------------- /logs/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/context.md -------------------------------------------------------------------------------- /logs/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/exceptions.md -------------------------------------------------------------------------------- /logs/log1755870784.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755870784.md -------------------------------------------------------------------------------- /logs/log1755871205.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755871205.md -------------------------------------------------------------------------------- /logs/log1755871331.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755871331.md -------------------------------------------------------------------------------- /logs/log1755872234.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755872234.md -------------------------------------------------------------------------------- /logs/log1755873369.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755873369.md -------------------------------------------------------------------------------- /logs/log1755875598.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755875598.md -------------------------------------------------------------------------------- /logs/log1755877694.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755877694.md -------------------------------------------------------------------------------- /logs/log1755879377.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755879377.md -------------------------------------------------------------------------------- /logs/log1755879960.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755879960.md -------------------------------------------------------------------------------- /logs/log1755881596.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755881596.md -------------------------------------------------------------------------------- /logs/log1755883079.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755883079.md -------------------------------------------------------------------------------- /logs/log1755884377.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755884377.md -------------------------------------------------------------------------------- /logs/log1755885706.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755885706.md -------------------------------------------------------------------------------- /logs/log1755887131.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755887131.md -------------------------------------------------------------------------------- /logs/log1755887133.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755887133.md -------------------------------------------------------------------------------- /logs/log1755887170.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755887170.md -------------------------------------------------------------------------------- /logs/log1755887442.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755887442.md -------------------------------------------------------------------------------- /logs/log1755890580.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755890580.md -------------------------------------------------------------------------------- /logs/log1755890748.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755890748.md -------------------------------------------------------------------------------- /logs/log1755892615.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755892615.md -------------------------------------------------------------------------------- /logs/log1755892790.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755892790.md -------------------------------------------------------------------------------- /logs/log1755893016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755893016.md -------------------------------------------------------------------------------- /logs/log1755894226.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755894226.md -------------------------------------------------------------------------------- /logs/log1755928636.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755928636.md -------------------------------------------------------------------------------- /logs/log1755929684.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755929684.md -------------------------------------------------------------------------------- /logs/log1755930042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755930042.md -------------------------------------------------------------------------------- /logs/log1755937495.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755937495.md -------------------------------------------------------------------------------- /logs/log1755937774.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755937774.md -------------------------------------------------------------------------------- /logs/log1755938425.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755938425.md -------------------------------------------------------------------------------- /logs/log1755940222.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755940222.md -------------------------------------------------------------------------------- /logs/log1755940517.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755940517.md -------------------------------------------------------------------------------- /logs/log1755940658.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755940658.md -------------------------------------------------------------------------------- /logs/log1755941043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755941043.md -------------------------------------------------------------------------------- /logs/log1755942454.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755942454.md -------------------------------------------------------------------------------- /logs/log1755942573.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755942573.md -------------------------------------------------------------------------------- /logs/log1755949362.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755949362.md -------------------------------------------------------------------------------- /logs/log1755953264.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755953264.md -------------------------------------------------------------------------------- /logs/log1755969060.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755969060.md -------------------------------------------------------------------------------- /logs/log1755972031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755972031.md -------------------------------------------------------------------------------- /logs/log1755972987.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755972987.md -------------------------------------------------------------------------------- /logs/log1755973076.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755973076.md -------------------------------------------------------------------------------- /logs/log1755973590.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755973590.md -------------------------------------------------------------------------------- /logs/log1755974004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755974004.md -------------------------------------------------------------------------------- /logs/log1755975410.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755975410.md -------------------------------------------------------------------------------- /logs/log1755975701.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755975701.md -------------------------------------------------------------------------------- /logs/log1755976135.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755976135.md -------------------------------------------------------------------------------- /logs/log1755977078.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755977078.md -------------------------------------------------------------------------------- /logs/log1755977337.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755977337.md -------------------------------------------------------------------------------- /logs/log1755978126.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755978126.md -------------------------------------------------------------------------------- /logs/log1755980804.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1755980804.md -------------------------------------------------------------------------------- /logs/log1756009491.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756009491.md -------------------------------------------------------------------------------- /logs/log1756009684.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756009684.md -------------------------------------------------------------------------------- /logs/log1756010588.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756010588.md -------------------------------------------------------------------------------- /logs/log1756012262.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756012262.md -------------------------------------------------------------------------------- /logs/log1756013526.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756013526.md -------------------------------------------------------------------------------- /logs/log1756014903.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756014903.md -------------------------------------------------------------------------------- /logs/log1756017958.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756017958.md -------------------------------------------------------------------------------- /logs/log1756018838.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756018838.md -------------------------------------------------------------------------------- /logs/log1756021716.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756021716.md -------------------------------------------------------------------------------- /logs/log1756024459.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756024459.md -------------------------------------------------------------------------------- /logs/log1756064359.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756064359.md -------------------------------------------------------------------------------- /logs/log1756067564.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756067564.md -------------------------------------------------------------------------------- /logs/log1756071034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756071034.md -------------------------------------------------------------------------------- /logs/log1756071104.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756071104.md -------------------------------------------------------------------------------- /logs/log1756071220.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756071220.md -------------------------------------------------------------------------------- /logs/log1756098266.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756098266.md -------------------------------------------------------------------------------- /logs/log1756108907.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756108907.md -------------------------------------------------------------------------------- /logs/log1756110054.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756110054.md -------------------------------------------------------------------------------- /logs/log1756114527.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756114527.md -------------------------------------------------------------------------------- /logs/log1756115099.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756115099.md -------------------------------------------------------------------------------- /logs/log1756116841.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756116841.md -------------------------------------------------------------------------------- /logs/log1756121959.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756121959.md -------------------------------------------------------------------------------- /logs/log1756122285.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756122285.md -------------------------------------------------------------------------------- /logs/log1756123592.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756123592.md -------------------------------------------------------------------------------- /logs/log1756124640.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756124640.md -------------------------------------------------------------------------------- /logs/log1756126119.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756126119.md -------------------------------------------------------------------------------- /logs/log1756126139.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756126139.md -------------------------------------------------------------------------------- /logs/log1756132378.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756132378.md -------------------------------------------------------------------------------- /logs/log1756135976.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756135976.md -------------------------------------------------------------------------------- /logs/log1756138092.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756138092.md -------------------------------------------------------------------------------- /logs/log1756141591.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756141591.md -------------------------------------------------------------------------------- /logs/log1756143118.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756143118.md -------------------------------------------------------------------------------- /logs/log1756149439.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1756149439.md -------------------------------------------------------------------------------- /logs/log1759123815.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/logs/log1759123815.md -------------------------------------------------------------------------------- /runtimeconfig.template.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/runtimeconfig.template.dev.json -------------------------------------------------------------------------------- /service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/service.yaml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Proto.Actor/ActorSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/ActorSystem.cs -------------------------------------------------------------------------------- /src/Proto.Actor/ActorSystemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/ActorSystemConfig.cs -------------------------------------------------------------------------------- /src/Proto.Actor/ActorSystemLogMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/ActorSystemLogMessages.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Behavior.cs -------------------------------------------------------------------------------- /src/Proto.Actor/CancellationTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/CancellationTokens.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ActorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ActorContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ActorContextDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ActorContextDecorator.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ActorContextExtras.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ActorContextExtras.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ActorLoggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ActorLoggingContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/BatchContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/BatchContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/CapturedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/CapturedContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ContextState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ContextState.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/IContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/IContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/IContextStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/IContextStore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/IInfoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/IInfoContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/IReceiverContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/IReceiverContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ISenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ISenderContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ISpawnerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ISpawnerContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/IStopperContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/IStopperContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/ISystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/ISystemContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/RootContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/RootContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/RootContextDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/RootContextDecorator.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/RootLoggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/RootLoggingContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/SystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/SystemContext.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Context/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Context/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Deduplication/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Deduplication/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Delegates.cs -------------------------------------------------------------------------------- /src/Proto.Actor/DependencyInjection/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/DependencyInjection/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Diagnostics/DiagnosticTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Diagnostics/DiagnosticTools.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Diagnostics/DiagnosticsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Diagnostics/DiagnosticsEntry.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Diagnostics/DiagnosticsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Diagnostics/DiagnosticsStore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Diagnostics/IActorDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Diagnostics/IActorDiagnostics.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Diagnostics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Diagnostics/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/EventStream/DeadLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/EventStream/DeadLetter.cs -------------------------------------------------------------------------------- /src/Proto.Actor/EventStream/EventExpectation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/EventStream/EventExpectation.cs -------------------------------------------------------------------------------- /src/Proto.Actor/EventStream/EventProbe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/EventStream/EventProbe.cs -------------------------------------------------------------------------------- /src/Proto.Actor/EventStream/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/EventStream/EventStream.cs -------------------------------------------------------------------------------- /src/Proto.Actor/EventStream/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/EventStream/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Exceptions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Extensions/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Extensions/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/FunctionActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/FunctionActor.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Future/FutureBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Future/FutureBatch.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Future/Futures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Future/Futures.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Future/SharedFuture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Future/SharedFuture.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Future/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Future/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/IActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/IActor.cs -------------------------------------------------------------------------------- /src/Proto.Actor/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/InstanceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/InstanceLogger.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/Log.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/LogStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/LogStore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/LogStoreEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/LogStoreEntry.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/LogValueFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/LogValueFormatter.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/NullLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/NullLoggerFactory.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Logging/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Logging/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/BatchingMailbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/BatchingMailbox.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/BoundedMailbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/BoundedMailbox.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/BoundedMailboxQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/BoundedMailboxQueue.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/DefaultMailbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/DefaultMailbox.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/Dispatcher.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/IMailbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/IMailbox.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/MPMCQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/MPMCQueue.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/Queue.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/UnboundedMailbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/UnboundedMailbox.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/UnboundedMailboxQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/UnboundedMailboxQueue.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Mailbox/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Mailbox/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/IAutoRespond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/IAutoRespond.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/IMessageBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/IMessageBatch.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/MessageEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/MessageEnvelope.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/MessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/MessageExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/MessageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/MessageHeader.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Messages/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Metrics/ActorMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Metrics/ActorMetrics.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Metrics/Metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Metrics/Metrics.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Metrics/MetricsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Metrics/MetricsExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Metrics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Metrics/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Middleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Middleware.cs -------------------------------------------------------------------------------- /src/Proto.Actor/PID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/PID.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Process/ActorProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Process/ActorProcess.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Process/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Process/Process.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Process/ProcessRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Process/ProcessRegistry.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Process/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Process/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Properties/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Properties/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Props/Props.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Props/Props.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Props/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Props/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Proto.Actor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Proto.Actor.csproj -------------------------------------------------------------------------------- /src/Proto.Actor/ProtoTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/ProtoTags.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Protos.proto -------------------------------------------------------------------------------- /src/Proto.Actor/Router/HashRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/HashRing.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/IHashable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/IHashable.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/Messages/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Router/RouterActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/RouterActor.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/RouterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/RouterExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/RouterProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/RouterProcess.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/Routers/RouterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/Routers/RouterConfig.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/Routers/RouterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/Routers/RouterState.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Router/Routers/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/Routers/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Router/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Router/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Stopper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Stopper.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/AllForOneStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/AllForOneStrategy.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/Guardians.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/Guardians.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/ISupervisor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/ISupervisor.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/OneForOneStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/OneForOneStrategy.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/RestartStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/RestartStatistics.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/Supervision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/Supervision.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Supervision/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Supervision/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Timers/ISchedulerHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Timers/ISchedulerHook.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Timers/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Timers/Scheduler.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Timers/TimerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Timers/TimerExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Timers/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Timers/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/AsyncSemaphore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/AsyncSemaphore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/ConcurrentKeyValueStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/ConcurrentKeyValueStore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/ConcurrentSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/ConcurrentSet.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/EmptyKeyValueStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/EmptyKeyValueStore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/IKeyValueStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/IKeyValueStore.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/MurMurHash2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/MurMurHash2.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/Retry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/Retry.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/TaskClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/TaskClock.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/TaskExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/TaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/TaskFactory.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/ThreadPoolStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/ThreadPoolStats.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/Throttle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/Throttle.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/TypedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/TypedDictionary.cs -------------------------------------------------------------------------------- /src/Proto.Actor/Utils/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/Utils/context.md -------------------------------------------------------------------------------- /src/Proto.Actor/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Actor/context.md -------------------------------------------------------------------------------- /src/Proto.Analyzers/DiagnosticCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/DiagnosticCategories.cs -------------------------------------------------------------------------------- /src/Proto.Analyzers/DiagnosticDescriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/DiagnosticDescriptors.cs -------------------------------------------------------------------------------- /src/Proto.Analyzers/DiagnosticIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/DiagnosticIds.cs -------------------------------------------------------------------------------- /src/Proto.Analyzers/Diagnostics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/Diagnostics/context.md -------------------------------------------------------------------------------- /src/Proto.Analyzers/Proto.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/Proto.Analyzers.csproj -------------------------------------------------------------------------------- /src/Proto.Analyzers/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/SymbolExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Analyzers/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/SyntaxExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Analyzers/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/context.md -------------------------------------------------------------------------------- /src/Proto.Analyzers/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/tools/install.ps1 -------------------------------------------------------------------------------- /src/Proto.Analyzers/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Analyzers/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/Proto.Cluster.AmazonECS/AwsHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.AmazonECS/AwsHttpClient.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.AmazonECS/EcsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.AmazonECS/EcsUtils.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.AmazonECS/ProtoLabels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.AmazonECS/ProtoLabels.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.AmazonECS/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.AmazonECS/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/CodeGenerator.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/Generator.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/OutputFileName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/OutputFileName.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/PathPolyfill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/PathPolyfill.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/ProtoGenTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/ProtoGenTask.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/README.md -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/Template.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/build.sh -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/build/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/build/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/deps/Handlebars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/deps/Handlebars.dll -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/deps/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/deps/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/logo.png -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/model/ProtoField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/model/ProtoField.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/model/ProtoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/model/ProtoFile.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/model/ProtoHack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/model/ProtoHack.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.CodeGen/model/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.CodeGen/model/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Consul/ConsulProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Consul/ConsulProvider.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Consul/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Consul/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/App.razor -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/Pages/Index.razor -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/Pages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/Pages/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/Shared/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/Shared/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/TreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/TreeNode.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/_Imports.razor -------------------------------------------------------------------------------- /src/Proto.Cluster.Dashboard/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Dashboard/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Etcd/EtcdProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Etcd/EtcdProvider.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Etcd/EtcdProviderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Etcd/EtcdProviderConfig.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Etcd/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Etcd/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Identity.MongoDb/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Identity.MongoDb/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Identity.Redis/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Identity.Redis/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.Kubernetes/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Kubernetes/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Kubernetes/ProtoLabels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Kubernetes/ProtoLabels.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.Kubernetes/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.Kubernetes/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.SeedNode.MongoDb/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.SeedNode.MongoDb/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.SeedNode.Redis/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.SeedNode.Redis/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster.TestProvider/InMemAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.TestProvider/InMemAgent.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.TestProvider/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.TestProvider/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Cluster.TestProvider/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster.TestProvider/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/ActivatedClusterKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ActivatedClusterKind.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Cache/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Cache/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Cluster.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterConfig.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterContext.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterContextConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterContextConfig.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterContracts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterContracts.proto -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterDiagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterDiagnostics.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterExtension.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterInitialization.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterKind.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/ClusterMetricsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ClusterMetricsCollector.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/DefaultClusterContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/DefaultClusterContext.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/DiagnosticsContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/DiagnosticsContracts.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/Consensus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/Consensus.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/ConsensusChecks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/ConsensusChecks.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/Gossip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/Gossip.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/GossipActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/GossipActor.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/GossipDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/GossipDefaults.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/GossipKeyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/GossipKeyValue.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/GossipKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/GossipKeys.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/GossipSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/GossipSender.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/Gossiper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/Gossiper.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/GossiperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/GossiperFactory.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/IDeltaValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/IDeltaValue.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/IGossip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/IGossip.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/IGossipTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/IGossipTransport.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/IRandomProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/IRandomProvider.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/MemberStateDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/MemberStateDelta.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Gossip/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Gossip/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/GossipContracts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/GossipContracts.proto -------------------------------------------------------------------------------- /src/Proto.Cluster/Grain/ContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Grain/ContextExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Grain/GrainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Grain/GrainException.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Grain/GrainRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Grain/GrainRequest.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Grain/GrainResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Grain/GrainResponse.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Grain/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Grain/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/GrainContracts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/GrainContracts.proto -------------------------------------------------------------------------------- /src/Proto.Cluster/Healthchecks/Healthcheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Healthchecks/Healthcheck.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Healthchecks/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Healthchecks/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/IClusterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/IClusterProvider.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Identity/GetPid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Identity/GetPid.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Identity/IIdentityLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Identity/IIdentityLookup.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Identity/IdentityMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Identity/IdentityMetrics.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Identity/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Identity/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Member.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Membership/IMemberList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Membership/IMemberList.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Membership/MemberList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Membership/MemberList.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Membership/MetaMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Membership/MetaMember.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Membership/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Membership/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/Messages/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Messages/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Messages/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/Metrics/ClusterMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Metrics/ClusterMetrics.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Metrics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Metrics/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/HandoverSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/HandoverSink.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/HandoverSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/HandoverSource.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/IndexSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/IndexSet.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/MemberHashRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/MemberHashRing.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/Rendezvous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/Rendezvous.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Partition/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Partition/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/PidCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PidCache.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Properties/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Properties/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/Proto.Cluster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Proto.Cluster.csproj -------------------------------------------------------------------------------- /src/Proto.Cluster/ProtoActorLifecycleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/ProtoActorLifecycleHost.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/BatchingProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/BatchingProducer.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/IPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/IPublisher.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/PubSubBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/PubSubBatch.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/PubSubConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/PubSubConfig.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/PubSubExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/PubSubExtension.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/PubSubExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/PubSubExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/Publisher.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/PublisherConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/PublisherConfig.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/TopicActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/TopicActor.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSub/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSub/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/PubSubContracts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/PubSubContracts.proto -------------------------------------------------------------------------------- /src/Proto.Cluster/Seed/ISeedNodeDiscovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Seed/ISeedNodeDiscovery.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Seed/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Seed/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Seed/SeedClientNodeActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Seed/SeedClientNodeActor.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Seed/SeedNodeActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Seed/SeedNodeActor.cs -------------------------------------------------------------------------------- /src/Proto.Cluster/Seed/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/Seed/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/SeedContracts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/SeedContracts.proto -------------------------------------------------------------------------------- /src/Proto.Cluster/SingleNode/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/SingleNode/context.md -------------------------------------------------------------------------------- /src/Proto.Cluster/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Cluster/context.md -------------------------------------------------------------------------------- /src/Proto.OpenTelemetry/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.OpenTelemetry/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.Couchbase/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Couchbase/Event.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.Couchbase/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Couchbase/Snapshot.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.Couchbase/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Couchbase/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.DynamoDB/DynamoDBHelper.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Proto.Persistence.DynamoDB/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.DynamoDB/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.DynamoDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.DynamoDB/README.md -------------------------------------------------------------------------------- /src/Proto.Persistence.DynamoDB/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.DynamoDB/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.Marten/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Marten/Event.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.Marten/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Marten/Snapshot.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.Marten/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Marten/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.MongoDB/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.MongoDB/Event.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.MongoDB/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.MongoDB/Snapshot.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.MongoDB/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.MongoDB/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.RavenDB/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.RavenDB/Event.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.RavenDB/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.RavenDB/Snapshot.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.RavenDB/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.RavenDB/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.SqlServer/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.SqlServer/Event.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.SqlServer/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.SqlServer/Snapshot.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.SqlServer/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.SqlServer/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence.Sqlite/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Sqlite/Event.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.Sqlite/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Sqlite/Snapshot.cs -------------------------------------------------------------------------------- /src/Proto.Persistence.Sqlite/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence.Sqlite/context.md -------------------------------------------------------------------------------- /src/Proto.Persistence/IProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence/IProvider.cs -------------------------------------------------------------------------------- /src/Proto.Persistence/ISnapshotStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence/ISnapshotStrategy.cs -------------------------------------------------------------------------------- /src/Proto.Persistence/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Persistence/Persistence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence/Persistence.cs -------------------------------------------------------------------------------- /src/Proto.Persistence/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Persistence/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/Activator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Activator.cs -------------------------------------------------------------------------------- /src/Proto.Remote/BlockList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/BlockList.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/BlockedEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/BlockedEndpoint.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/EndpointManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/EndpointManager.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/IConnectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/IConnectionMode.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/IRemoteEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/IRemoteEndpoint.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/README.md -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/Runner/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/Runner/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/ServerConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/ServerConnector.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Endpoints/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Endpoints/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Extensions.cs -------------------------------------------------------------------------------- /src/Proto.Remote/GrpcNet/GrpcNetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/GrpcNet/GrpcNetExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Remote/GrpcNet/GrpcNetRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/GrpcNet/GrpcNetRemote.cs -------------------------------------------------------------------------------- /src/Proto.Remote/GrpcNet/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/GrpcNet/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/Healthchecks/Healthcheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Healthchecks/Healthcheck.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Healthchecks/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Healthchecks/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/IBlockList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/IBlockList.cs -------------------------------------------------------------------------------- /src/Proto.Remote/IRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/IRemote.cs -------------------------------------------------------------------------------- /src/Proto.Remote/IRemoteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/IRemoteExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Remote/IRemotePriorityMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/IRemotePriorityMessage.cs -------------------------------------------------------------------------------- /src/Proto.Remote/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Messages.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Metrics/RemoteMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Metrics/RemoteMetrics.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Metrics/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Metrics/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/PidExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/PidExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Properties/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Properties/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/Proto.Remote.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Proto.Remote.csproj -------------------------------------------------------------------------------- /src/Proto.Remote/Protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Protos.proto -------------------------------------------------------------------------------- /src/Proto.Remote/RemoteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/RemoteConfig.cs -------------------------------------------------------------------------------- /src/Proto.Remote/RemoteConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/RemoteConfigExtensions.cs -------------------------------------------------------------------------------- /src/Proto.Remote/RemoteProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/RemoteProcess.cs -------------------------------------------------------------------------------- /src/Proto.Remote/ResponseStatusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/ResponseStatusCode.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /src/Proto.Remote/Serialization/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/Serialization/context.md -------------------------------------------------------------------------------- /src/Proto.Remote/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.Remote/context.md -------------------------------------------------------------------------------- /src/Proto.TestKit/ClusterTestKitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/ClusterTestKitExtensions.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/GossipNetworkPartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/GossipNetworkPartition.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/ITestProbe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/ITestProbe.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/MessageAndSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/MessageAndSender.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/ProbeMailboxStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/ProbeMailboxStatistics.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/PropsTestProbeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/PropsTestProbeExtensions.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/Proto.TestKit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/Proto.TestKit.csproj -------------------------------------------------------------------------------- /src/Proto.TestKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/README.md -------------------------------------------------------------------------------- /src/Proto.TestKit/TestKit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/TestKit.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/TestKitException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/TestKitException.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/TestMailboxStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/TestMailboxStats.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/TestProbe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/TestProbe.cs -------------------------------------------------------------------------------- /src/Proto.TestKit/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/Proto.TestKit/context.md -------------------------------------------------------------------------------- /src/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/src/context.md -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Directory.Build.targets -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/ActorMetricsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/ActorMetricsTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/ActorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/ActorTestBase.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/ActorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/ActorTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/BehaviorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/BehaviorTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/EventStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/EventStreamTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Extensions/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Extensions/context.md -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/FunctionActorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/FunctionActorTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Futures/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Futures/context.md -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Headers/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Headers/context.md -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Mailbox/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Mailbox/context.md -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/MiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/MiddlewareTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/PIDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/PIDTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/PoisonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/PoisonTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/PropsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/PropsTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/ReenterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/ReenterTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Router/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Router/context.md -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/SchedulerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/SchedulerTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/SpawnTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/SpawnTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/StashingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/StashingTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/StoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/StoreTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Utils/RetryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Utils/RetryTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/Utils/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/Utils/context.md -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/WatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/WatchTests.cs -------------------------------------------------------------------------------- /tests/Proto.Actor.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Actor.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Analyzers.Tests/AnalyzerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Analyzers.Tests/AnalyzerTest.cs -------------------------------------------------------------------------------- /tests/Proto.Analyzers.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Analyzers.Tests/Usings.cs -------------------------------------------------------------------------------- /tests/Proto.Analyzers.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Analyzers.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Cluster.CodeGen.Tests/bar.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.CodeGen.Tests/bar.proto -------------------------------------------------------------------------------- /tests/Proto.Cluster.CodeGen.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.CodeGen.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Cluster.CodeGen.Tests/foo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.CodeGen.Tests/foo.proto -------------------------------------------------------------------------------- /tests/Proto.Cluster.Identity.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Identity.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Cluster.PubSub.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.PubSub.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/ClusterFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/ClusterFixture.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/ClusterTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/ClusterTestBase.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/ClusterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/ClusterTests.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/ConsulTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/ConsulTests.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/EchoActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/EchoActor.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/Extensions.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/GossipCoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/GossipCoreTests.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/GossipTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/GossipTests.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/PidCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/PidCacheTests.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/TimeoutTests.cs -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/Proto.Cluster.Tests/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Cluster.Tests/messages.proto -------------------------------------------------------------------------------- /tests/Proto.OpenTelemetry.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.OpenTelemetry.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Persistence.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Persistence.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Proto.Persistence.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Persistence.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.Remote.Tests.Messages/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Remote.Tests.Messages/context.md -------------------------------------------------------------------------------- /tests/Proto.Remote.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Remote.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/Proto.Remote.Tests/EchoActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Remote.Tests/EchoActor.cs -------------------------------------------------------------------------------- /tests/Proto.Remote.Tests/RemoteFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Remote.Tests/RemoteFixture.cs -------------------------------------------------------------------------------- /tests/Proto.Remote.Tests/RemoteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Remote.Tests/RemoteTests.cs -------------------------------------------------------------------------------- /tests/Proto.Remote.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.Remote.Tests/context.md -------------------------------------------------------------------------------- /tests/Proto.TestFixtures/DoNothingActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestFixtures/DoNothingActor.cs -------------------------------------------------------------------------------- /tests/Proto.TestFixtures/Receivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestFixtures/Receivers.cs -------------------------------------------------------------------------------- /tests/Proto.TestFixtures/TestConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestFixtures/TestConfig.cs -------------------------------------------------------------------------------- /tests/Proto.TestFixtures/TestDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestFixtures/TestDispatcher.cs -------------------------------------------------------------------------------- /tests/Proto.TestFixtures/TestProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestFixtures/TestProcess.cs -------------------------------------------------------------------------------- /tests/Proto.TestFixtures/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestFixtures/context.md -------------------------------------------------------------------------------- /tests/Proto.TestKit.Tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/Proto.TestKit.Tests/context.md -------------------------------------------------------------------------------- /tests/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asynkron/protoactor-dotnet/HEAD/tests/context.md --------------------------------------------------------------------------------