├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── LICENSE ├── README.md ├── appveyor.yml ├── src ├── Vlingo.Xoom.Cluster.Tests │ ├── ClusterPropertiesTest.cs │ ├── Converter.cs │ ├── Model │ │ ├── AbstractClusterTest.cs │ │ ├── AbstractMessageTool.cs │ │ ├── Attribute │ │ │ ├── AttributeSetRepositoryTest.cs │ │ │ ├── AttributeSetTest.cs │ │ │ ├── AttributeTest.cs │ │ │ ├── AttributesAgentActorTest.cs │ │ │ ├── ConfirmablesTest.cs │ │ │ ├── ConfirmingDistributorTest.cs │ │ │ ├── MockConfirmationInterest.cs │ │ │ └── TrackedAttributeTest.cs │ │ ├── ClusterApplicationBroadcasterTest.cs │ │ ├── ClusterConfigurationTest.cs │ │ ├── ClusterSnapshotActorTest.cs │ │ ├── ClusterSnapshotInitializerTest.cs │ │ ├── ClusterTest.cs │ │ ├── Message │ │ │ ├── MessageFixtures.cs │ │ │ ├── OperationalMessageCacheTest.cs │ │ │ ├── OperationalMessageGenerationTest.cs │ │ │ ├── OperationalMessageParserTest.cs │ │ │ ├── RawMessageBuilderTest.cs │ │ │ └── RawMessageTest.cs │ │ ├── MockClusterApplication.cs │ │ ├── Nodes │ │ │ ├── LocalRegistryTest.cs │ │ │ ├── MockRegistryInterest.cs │ │ │ └── RegisteredNodeStatusTest.cs │ │ ├── Outbound │ │ │ ├── ApplicationOutboundStreamTest.cs │ │ │ ├── MockManagedOutboundChannel.cs │ │ │ ├── MockManagedOutboundChannelProvider.cs │ │ │ ├── OperationalOutboundStreamTest.cs │ │ │ └── OutboundTest.cs │ │ └── PropertiesTest.cs │ ├── Vlingo.Xoom.Cluster.Tests.csproj │ ├── vlingo-actors.json │ └── vlingo-cluster.json ├── Vlingo.Xoom.Cluster.sln └── Vlingo.Xoom.Cluster │ ├── ClusterProperties.cs │ ├── Model │ ├── Application │ │ ├── ClusterApplicationActor.cs │ │ ├── ClusterApplicationAdapter.cs │ │ ├── ClusterApplication__Proxy.cs │ │ ├── FakeClusterApplicationActor.cs │ │ └── IClusterApplication.cs │ ├── Attribute │ │ ├── Attribute.cs │ │ ├── AttributeSet.cs │ │ ├── AttributeSetRepository.cs │ │ ├── AttributesAgentActor.cs │ │ ├── AttributesAgent__Proxy.cs │ │ ├── AttributesClient.cs │ │ ├── Confirmables.cs │ │ ├── ConfirmingDistributor.cs │ │ ├── IAttributesAgent.cs │ │ ├── IAttributesCommands.cs │ │ ├── IAttributesProtocol.cs │ │ ├── IAttributesQueries.cs │ │ ├── IConfirmationInterest.cs │ │ ├── Message │ │ │ ├── AddAttribute.cs │ │ │ ├── ApplicationMessage.cs │ │ │ ├── ApplicationMessageType.cs │ │ │ ├── AttributeMessage.cs │ │ │ ├── ConfirmAttribute.cs │ │ │ ├── ConfirmCreateAttributeSet.cs │ │ │ ├── ConfirmRemoveAttributeSet.cs │ │ │ ├── CreateAttributeSet.cs │ │ │ ├── ReceivedAttributeMessage.cs │ │ │ ├── RemoveAttribute.cs │ │ │ ├── RemoveAttributeSet.cs │ │ │ └── ReplaceAttribute.cs │ │ ├── NoOpConfirmationInterest.cs │ │ ├── RemoteAttributeRequestHandler.cs │ │ └── TrackedAttribute.cs │ ├── Cluster.cs │ ├── ClusterApplicationBroadcaster.cs │ ├── ClusterConfiguration.cs │ ├── ClusterSnapshotActor.cs │ ├── ClusterSnapshotControl__Proxy.cs │ ├── ClusterSnapshotInitializer.cs │ ├── ClusterSnapshot__Proxy.cs │ ├── IClusterSnapshot.cs │ ├── IClusterSnapshotControl.cs │ ├── ICommunicationsHub.cs │ ├── Message │ │ ├── ApplicationSays.cs │ │ ├── CheckHealth.cs │ │ ├── Directory.cs │ │ ├── Elect.cs │ │ ├── Join.cs │ │ ├── Leader.cs │ │ ├── Leave.cs │ │ ├── MessageConverters.cs │ │ ├── OperationalMessage.cs │ │ ├── OperationalMessageCache.cs │ │ ├── OperationalMessagePartsBuilder.cs │ │ ├── Ping.cs │ │ ├── Pulse.cs │ │ ├── Split.cs │ │ └── Vote.cs │ ├── NetworkCommunicationsHub.cs │ ├── Nodes │ │ ├── FollowerState.cs │ │ ├── ILiveNodeMaintainer.cs │ │ ├── ILocalLiveNode.cs │ │ ├── IRegistry.cs │ │ ├── IRegistryInterest.cs │ │ ├── IdleState.cs │ │ ├── LeaderState.cs │ │ ├── LiveNodeState.cs │ │ ├── LocalLiveNodeActor.cs │ │ ├── LocalRegistry.cs │ │ ├── MergeResult.cs │ │ ├── RegisteredNodeStatus.cs │ │ ├── RegistryInterestBroadcaster.cs │ │ ├── RegistryInterest__Proxy.cs │ │ └── TimeoutTracker.cs │ ├── Outbound │ │ ├── IOperationalOutboundStream.cs │ │ ├── OperationalOutboundStreamActor.cs │ │ └── OperationalOutboundStream__Proxy.cs │ └── Properties.cs │ ├── NodeBootstrap.cs │ ├── ShutdownHook.cs │ ├── Vlingo.Xoom.Cluster.csproj │ ├── vlingo-actors.json │ └── vlingo-cluster.json └── vlingo-64x64.png /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/ClusterPropertiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/ClusterPropertiesTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Converter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/AbstractClusterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/AbstractClusterTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/AbstractMessageTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/AbstractMessageTool.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributeSetRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributeSetRepositoryTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributeSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributeSetTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributeTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributesAgentActorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/AttributesAgentActorTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/ConfirmablesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/ConfirmablesTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/ConfirmingDistributorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/ConfirmingDistributorTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/MockConfirmationInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/MockConfirmationInterest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/TrackedAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Attribute/TrackedAttributeTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/ClusterApplicationBroadcasterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/ClusterApplicationBroadcasterTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/ClusterConfigurationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/ClusterConfigurationTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/ClusterSnapshotActorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/ClusterSnapshotActorTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/ClusterSnapshotInitializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/ClusterSnapshotInitializerTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/ClusterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/ClusterTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Message/MessageFixtures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Message/MessageFixtures.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Message/OperationalMessageCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Message/OperationalMessageCacheTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Message/OperationalMessageGenerationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Message/OperationalMessageGenerationTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Message/OperationalMessageParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Message/OperationalMessageParserTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Message/RawMessageBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Message/RawMessageBuilderTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Message/RawMessageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Message/RawMessageTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/MockClusterApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/MockClusterApplication.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Nodes/LocalRegistryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Nodes/LocalRegistryTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Nodes/MockRegistryInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Nodes/MockRegistryInterest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Nodes/RegisteredNodeStatusTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Nodes/RegisteredNodeStatusTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/ApplicationOutboundStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/ApplicationOutboundStreamTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/MockManagedOutboundChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/MockManagedOutboundChannel.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/MockManagedOutboundChannelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/MockManagedOutboundChannelProvider.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/OperationalOutboundStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/OperationalOutboundStreamTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/OutboundTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/Outbound/OutboundTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Model/PropertiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Model/PropertiesTest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/Vlingo.Xoom.Cluster.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/Vlingo.Xoom.Cluster.Tests.csproj -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/vlingo-actors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/vlingo-actors.json -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.Tests/vlingo-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.Tests/vlingo-cluster.json -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster.sln -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/ClusterProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/ClusterProperties.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Application/ClusterApplicationActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Application/ClusterApplicationActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Application/ClusterApplicationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Application/ClusterApplicationAdapter.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Application/ClusterApplication__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Application/ClusterApplication__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Application/FakeClusterApplicationActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Application/FakeClusterApplicationActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Application/IClusterApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Application/IClusterApplication.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Attribute.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/AttributeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/AttributeSet.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/AttributeSetRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/AttributeSetRepository.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/AttributesAgentActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/AttributesAgentActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/AttributesAgent__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/AttributesAgent__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/AttributesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/AttributesClient.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Confirmables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Confirmables.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/ConfirmingDistributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/ConfirmingDistributor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesAgent.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesCommands.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesProtocol.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/IAttributesQueries.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/IConfirmationInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/IConfirmationInterest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/AddAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/AddAttribute.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ApplicationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ApplicationMessage.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ApplicationMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ApplicationMessageType.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/AttributeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/AttributeMessage.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ConfirmAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ConfirmAttribute.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ConfirmCreateAttributeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ConfirmCreateAttributeSet.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ConfirmRemoveAttributeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ConfirmRemoveAttributeSet.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/CreateAttributeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/CreateAttributeSet.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ReceivedAttributeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ReceivedAttributeMessage.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/RemoveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/RemoveAttribute.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/RemoveAttributeSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/RemoveAttributeSet.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ReplaceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/Message/ReplaceAttribute.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/NoOpConfirmationInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/NoOpConfirmationInterest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/RemoteAttributeRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/RemoteAttributeRequestHandler.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Attribute/TrackedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Attribute/TrackedAttribute.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Cluster.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ClusterApplicationBroadcaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ClusterApplicationBroadcaster.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ClusterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ClusterConfiguration.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ClusterSnapshotActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ClusterSnapshotActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ClusterSnapshotControl__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ClusterSnapshotControl__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ClusterSnapshotInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ClusterSnapshotInitializer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ClusterSnapshot__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ClusterSnapshot__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/IClusterSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/IClusterSnapshot.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/IClusterSnapshotControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/IClusterSnapshotControl.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/ICommunicationsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/ICommunicationsHub.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/ApplicationSays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/ApplicationSays.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/CheckHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/CheckHealth.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Directory.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Elect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Elect.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Join.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Leader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Leader.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Leave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Leave.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/MessageConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/MessageConverters.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/OperationalMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/OperationalMessage.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/OperationalMessageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/OperationalMessageCache.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/OperationalMessagePartsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/OperationalMessagePartsBuilder.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Ping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Ping.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Pulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Pulse.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Split.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Split.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Message/Vote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Message/Vote.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/NetworkCommunicationsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/NetworkCommunicationsHub.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/FollowerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/FollowerState.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/ILiveNodeMaintainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/ILiveNodeMaintainer.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/ILocalLiveNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/ILocalLiveNode.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/IRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/IRegistry.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/IRegistryInterest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/IRegistryInterest.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/IdleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/IdleState.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/LeaderState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/LeaderState.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/LiveNodeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/LiveNodeState.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/LocalLiveNodeActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/LocalLiveNodeActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/LocalRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/LocalRegistry.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/MergeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/MergeResult.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/RegisteredNodeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/RegisteredNodeStatus.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/RegistryInterestBroadcaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/RegistryInterestBroadcaster.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/RegistryInterest__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/RegistryInterest__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Nodes/TimeoutTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Nodes/TimeoutTracker.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Outbound/IOperationalOutboundStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Outbound/IOperationalOutboundStream.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Outbound/OperationalOutboundStreamActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Outbound/OperationalOutboundStreamActor.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Outbound/OperationalOutboundStream__Proxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Outbound/OperationalOutboundStream__Proxy.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Model/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Model/Properties.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/NodeBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/NodeBootstrap.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/ShutdownHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/ShutdownHook.cs -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/Vlingo.Xoom.Cluster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/Vlingo.Xoom.Cluster.csproj -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/vlingo-actors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/vlingo-actors.json -------------------------------------------------------------------------------- /src/Vlingo.Xoom.Cluster/vlingo-cluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/src/Vlingo.Xoom.Cluster/vlingo-cluster.json -------------------------------------------------------------------------------- /vlingo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlingo-net/xoom-net-cluster/HEAD/vlingo-64x64.png --------------------------------------------------------------------------------