本文整理汇总了C++中AdminPrx::updateApplicationWithoutRestart方法的典型用法代码示例。如果您正苦于以下问题:C++ AdminPrx::updateApplicationWithoutRestart方法的具体用法?C++ AdminPrx::updateApplicationWithoutRestart怎么用?C++ AdminPrx::updateApplicationWithoutRestart使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminPrx
的用法示例。
在下文中一共展示了AdminPrx::updateApplicationWithoutRestart方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: test
void
updateServiceRuntimeProperties(const AdminPrx& admin, const ServiceDescriptorPtr& desc)
{
ServerInfo info = admin->getServerInfo("IceBox");
test(info.descriptor);
IceBoxDescriptorPtr iceBox = IceBoxDescriptorPtr::dynamicCast(info.descriptor);
for(ServiceInstanceDescriptorSeq::const_iterator p = iceBox->services.begin(); p != iceBox->services.end(); ++p)
{
if(p->descriptor->name == desc->name)
{
p->descriptor->propertySet.properties = desc->propertySet.properties;
}
}
ApplicationUpdateDescriptor update;
update.name = "TestApp";
NodeUpdateDescriptor node;
node.name = "localnode";
node.servers.push_back(info.descriptor);
update.nodes.push_back(node);
try
{
admin->updateApplicationWithoutRestart(update);
}
catch(const DeploymentException& ex)
{
cerr << ex.reason << endl;
test(false);
}
catch(const Ice::Exception& ex)
{
cerr << ex << endl;
test(false);
}
}
示例2: catch
void
updateServerRuntimeProperties(const AdminPrx& admin, const string&, const ServerDescriptorPtr& desc)
{
ApplicationUpdateDescriptor update;
update.name = "TestApp";
NodeUpdateDescriptor node;
node.name = "localnode";
node.servers.push_back(desc);
update.nodes.push_back(node);
try
{
admin->updateApplicationWithoutRestart(update);
}
catch(const Ice::Exception& ex)
{
cerr << ex << endl;
test(false);
}
}