⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.idl

📁 这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料
💻 IDL
字号:
//
// Test.idl,v 1.1 2001/03/10 00:13:04 coryan Exp
//

module Test
{
  /**
   * Callback interface used to test the behavior of the ORB under
   * crashes.
   */
  interface Crashed_Callback
  {
    /// Make sure the callback object is still in good shape
    /**
     * The server needs to verify that at least some requests worked
     * before trying to test the behavior of the ORB after a crash.
     */
    boolean are_you_there ();

    /// Force an abort() on the process implementing the callback
    /// interface
    oneway void crash_now_please ();

    /// Receive the first callback
    oneway void test_oneway ();
  };

  /**
   * Clients connect to this interface passing in a Crashed_Callback
   * object.
   * The service will then invoke all the methods on the
   * Crashed_Callback, and verify that only exceptions are raised
   * after invoking @c crash_now_please()
   *
   */
  interface Service
  {
    /// Invoke the callback object from the server
    oneway void run_test (in Crashed_Callback the_callback);
  };

};

⌨️ 快捷键说明

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