test.idl

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· IDL 代码 · 共 29 行

IDL
29
字号
// -*- IDL -*-
//test.idl,v 1.1 2003/07/30 18:05:43 bala Exp
#include "tao/PortableInterceptor.pidl"

module ForwardRequestTest
{

  interface test
  {
    /// Return the number assigned to the current object.  For
    /// example, object one will return "1," and object two will
    /// return "2."
    short number ();

    oneway void shutdown ();
  };

  local interface ServerRequestInterceptor
    : PortableInterceptor::ServerRequestInterceptor
  {

    /// Set the references to which requests will be forwarded.
    void forward_references (in Object obj1,
                             in Object obj2);

  };

};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?