本文整理汇总了C++中HelloPrx::sayHello_async方法的典型用法代码示例。如果您正苦于以下问题:C++ HelloPrx::sayHello_async方法的具体用法?C++ HelloPrx::sayHello_async怎么用?C++ HelloPrx::sayHello_async使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HelloPrx
的用法示例。
在下文中一共展示了HelloPrx::sayHello_async方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: if
int
AsyncClient::run(int argc, char* argv[])
{
callbackOnInterrupt();
HelloPrx hello = HelloPrx::checkedCast(communicator()->propertyToProxy("Hello.Proxy"));
if(!hello)
{
cerr << argv[0] << ": invalid proxy" << endl;
return EXIT_FAILURE;
}
menu();
char c;
do
{
try
{
cout << "==> ";
cin >> c;
if(c == 'i')
{
hello->sayHello(0);
}
else if(c == 'd')
{
hello->sayHello_async(new AMI_Hello_sayHelloI, 5000);
}
else if(c == 's')
{
hello->shutdown();
}
else if(c == 'x')
{
// Nothing to do
}
else if(c == '?')
{
menu();
}
else
{
cout << "unknown command `" << c << "'" << endl;
menu();
}
}
catch(const Ice::Exception& ex)
{
cerr << ex << endl;
}
}
while(cin.good() && c != 'x');
return EXIT_SUCCESS;
}
示例2: if
int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
if(argc > 1)
{
fprintf(stderr, "%s: too many arguments", argv[0]);
return EXIT_FAILURE;
}
HelloPrx hello = HelloPrx::checkedCast(communicator->propertyToProxy("Hello.Proxy"));
if(!hello)
{
fprintf(stderr, "%s: invalid proxy\n", argv[0]);
return EXIT_FAILURE;
}
menu();
char c = EOF;
do
{
try
{
printf("==> "); fflush(stdout);
do
{
c = getchar();
}
while(c != EOF && c == '\n');
if(c == 'i')
{
hello->sayHello(0);
}
else if(c == 'd')
{
hello->sayHello_async(new AMI_Hello_sayHelloI, 5000);
}
else if(c == 's')
{
hello->shutdown();
}
else if(c == 'x')
{
// Nothing to do
}
else if(c == '?')
{
menu();
}
else
{
printf("unknown command `%c'\n", c);
menu();
}
}
catch(const Ice::Exception& ex)
{
fprintf(stderr, "%s\n", ex.toString().c_str());
}
}
while(c != EOF && c != 'x');
return EXIT_SUCCESS;
}