当前位置: 首页>>代码示例>>C++>>正文


C++ Stub::hello方法代码示例

本文整理汇总了C++中Stub::hello方法的典型用法代码示例。如果您正苦于以下问题:C++ Stub::hello方法的具体用法?C++ Stub::hello怎么用?C++ Stub::hello使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Stub的用法示例。


在下文中一共展示了Stub::hello方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: processEvent

        void processEvent (int ev) {
            Log l("client ");

            // client

            l.info("getting remote Echo...\n");
            Stub<Echo> e;
            e.remote = reg->getRemote("test.Echo");

            l.info("using Echo(remote:%08x)...\n", e.remote.get());
            {
                string ret;
                if (e.echo(ret, "hi")) {
                    l.error("echo failed.\n");
                }
                printf("%s\n", ret.c_str());
            }

            {
                vector<string> args;
                args.push_back("a");
                args.push_back("b");
                args.push_back("c");
                string ret;
                if (e.concat(ret, args)) {
                    l.error("concat failed.\n");
                }
                printf("%s\n", ret.c_str());
            }

            {
                Ref<TestException> ex1;
                printf("Invoking touchmenot()\n");
                switch (e.touchmenot(ex1)) {
                default:
                    l.error("Unexpected return\n");
                    break;
                case 0:
                    printf("Silently returned.\n");
                    break;
                case 1:
                    printf("Got exception :%d\n", *ex1->i);
                    break;
                }
            }

            Ref<EchoCallback> cb = new EchoCallbackImpl();

            if (e.recursiveEcho("rrrrrrrrrrrrrrrrrrrrrrrrrrr", cb)) {
                l.error("recursiveEcho failed\n");
            }

            Person p;
            p.name = "Sooin";
            p.callback = cb;

            if (e.hello(p)) {
                l.error("hello failed.\n");
            }

            if (e.asyncEcho("hi again", cb)) {
                l.error("asyncEcho failed.\n");
            }

            printf("starting doubleit test.\n");
            {
                int32_t ret;
                if (e.doubleit(ret, 3) == 0) {
                    printf("doubleit(3) returns %d\n", ret);
                } else {
                    l.error("doubleit failed.\n");
                }
            }
        }
开发者ID:ciecet,项目名称:rop,代码行数:74,代码来源:echoclient.cpp


注:本文中的Stub::hello方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。