tao_ext.pidl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· PIDL 代码 · 共 62 行
PIDL
62 行
// -*- IDL -*-
// ================================================================
/**
* @file TAO_Ext.pidl
*
* TAO_Ext.pidl,v 1.4 2003/10/28 18:29:29 bala Exp
*
* This file contains extensions to the TAO-specific idl interfaces
* (not part of CORBA 2.6) defined in $TAO_ROOT/tao
*
* The steps to regenerate the code are as follows:
*
* 1. Run the tao_idl compiler on the pidl file. The command used for
* this is:
*
* tao_idl
* -o orig -Gp -Gd -Ge 1 -GT
* -Wb,export_macro=TAO_Messaging_Export
* -Wb,export_include=messaging_export.h
* -Wb,pre_include="ace/pre.h"
* -Wb,post_include="ace/post.h"
* -Wb,export_include="tao/corbafwd.h" -I$(TAO_ROOT) TAO_Ext.pidl
*
* 2. Then patch the generated code. The patch fixes the interface
* repository IDs, disables the code under certain configurations,
* and eliminates cycles in the include dependencies.
*
* Apply patches using the following commands:
*
* patch < diffs/TAO_ExtC.h.diff
* patch < diffs/TAO_ExtC.i.diff
* patch < diffs/TAO_ExtC.cpp.diff
*
* @note The diffs were generated with these commands:
*
* diff -wBbu orig/TAO_ExtC.h TAO_ExtC.h > diffs/TAO_ExtC.diff
* diff -wBbu orig/TAO_ExtC.i TAO_ExtC.i >> diffs/TAO_ExtC.diff
* diff -wBbu orig/TAO_ExtC.cpp TAO_ExtC.cpp >> diffs/TAO_ExtC.diff
*/
// ================================================================
#ifndef TAO_TAO_EXT_IDL
#define TAO_TAO_EXT_IDL
#include "tao/Policy.pidl"
#include "tao/TimeBase.pidl"
#pragma prefix "tao"
module TAO
{
const CORBA::PolicyType CONNECTION_TIMEOUT_POLICY_TYPE = 0x54410008;
local interface ConnectionTimeoutPolicy : CORBA::Policy {
readonly attribute TimeBase::TimeT relative_expiry;
};
};
#endif /* TAO_TAO_EXT_IDL */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?