本文整理汇总了C#中Configure.GetMasterNode方法的典型用法代码示例。如果您正苦于以下问题:C# Configure.GetMasterNode方法的具体用法?C# Configure.GetMasterNode怎么用?C# Configure.GetMasterNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Configure
的用法示例。
在下文中一共展示了Configure.GetMasterNode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ValidateMasterNodeConfigurationForWorker
private static void ValidateMasterNodeConfigurationForWorker(Configure config)
{
var masterNodeName = config.GetMasterNode();
if (masterNodeName == null)
throw new ConfigurationErrorsException(
"When defining Worker profile, 'MasterNodeConfig' section must be defined and the 'Node' entry should point to a valid host name.");
switch (IsLocalIpAddress(masterNodeName))
{
case true:
Address.InitializeLocalAddress(Address.Local.SubScope(Guid.NewGuid().ToString()).ToString());
logger.WarnFormat("'MasterNodeConfig.Node' points to a local host name: [{0}]. Worker input address name is [{1}]. It is randomly and uniquely generated to allow multiple workers working from the same machine as the Distributor.", masterNodeName, Address.Local);
break;
case false:
logger.InfoFormat("'MasterNodeConfig.Node' points to a non-local valid host name: [{0}].", masterNodeName);
break;
case null:
throw new ConfigurationErrorsException(
string.Format("'MasterNodeConfig.Node' entry should point to a valid host name. Currently it is: [{0}].", masterNodeName));
}
}
示例2: ValidateMasterNodeConfigurationForWorker
private static void ValidateMasterNodeConfigurationForWorker(Configure config)
{
var masterNodeName = config.GetMasterNode();
if (masterNodeName == null)
throw new ConfigurationErrorsException(
"When defining Worker profile, 'MasterNodeConfig' section must be defined and the 'Node' entry should point to a valid, non local, host name.");
if (string.IsNullOrWhiteSpace(masterNodeName))
throw new ConfigurationErrorsException(
string.Format("'MasterNodeConfig.Node' entry should point to a valid, non-local, host name: [{0}].", masterNodeName));
if (IsLocalIpAddress(masterNodeName))
throw new ConfigurationErrorsException(
string.Format("'MasterNodeConfig.Node' entry should point to a valid, non-local, host name. [{0}] points to a local host address.",
masterNodeName));
}