예제 #1
0
        protected internal BaseMultiClusterRoutingIT(string ignoredName, int numCores, int numReplicas, ISet <string> dbNames, DiscoveryServiceType discoveryType)
        {
            this._dbNames       = dbNames;
            this._discoveryType = discoveryType;

            this._clusterRule = (new ClusterRule()).withNumberOfCoreMembers(numCores).withNumberOfReadReplicas(numReplicas).withDatabaseNames(dbNames);
            this._numCores    = numCores;

            this._fileSystemRule = new DefaultFileSystemRule();
            this.RuleChain       = RuleChain.outerRule(_fileSystemRule).around(_clusterRule);
        }
예제 #2
0
 public virtual ClusterRule WithDiscoveryServiceType(DiscoveryServiceType discoveryServiceType)
 {
     this._discoveryServiceType = discoveryServiceType;
     return(this);
 }
예제 #3
0
 public EnterpriseClusterOverviewIT(DiscoveryServiceType discoveryServiceType) : base(discoveryServiceType)
 {
 }
예제 #4
0
 public EnterpriseClusterIpFamilyIT(DiscoveryServiceType discoveryServiceFactory, IpFamily ipFamily, bool useWildcard) : base(discoveryServiceFactory, ipFamily, useWildcard)
 {
 }
예제 #5
0
 protected internal BaseClusterIpFamilyIT(DiscoveryServiceType discoveryServiceType, IpFamily ipFamily, bool useWildcard)
 {
     ClusterRule.withDiscoveryServiceType(discoveryServiceType);
     ClusterRule.withIpFamily(ipFamily).useWildcard(useWildcard);
 }
예제 #6
0
 protected internal BaseClusterOverviewIT(DiscoveryServiceType discoveryServiceType)
 {
     ClusterRule.withDiscoveryServiceType(discoveryServiceType);
 }
예제 #7
0
 protected internal BaseCoreTopologyServiceIT(DiscoveryServiceType discoveryServiceType)
 {
     this._discoveryServiceType = discoveryServiceType;
 }
예제 #8
0
 public EnterpriseMultiClusterRoutingIT(string ignoredName, int numCores, int numReplicas, ISet <string> dbNames, DiscoveryServiceType discoveryType) : base(ignoredName, numCores, numReplicas, dbNames, discoveryType)
 {
 }