예제 #1
0
        internal AzureClusterActorSystem(ClusterConfigurator cluster, string deploymentId, string connectionString)
        {
            ClusterActorSystem.Current = this;

            this.cluster          = cluster;
            this.deploymentId     = deploymentId;
            this.connectionString = connectionString;

            host = new AzureSilo();
        }
예제 #2
0
 internal AzureClusterConfigurator()
 {
     cluster = new ClusterConfigurator();
 }
예제 #3
0
 internal AzureClusterActorSystem(ClusterConfigurator cluster)
 {
     ClusterActorSystem.Current = this;
     this.cluster = cluster;
     host         = new AzureSilo();
 }