dseventlogadmin.idl

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

IDL
57
字号
// DsEventLogAdmin.idl,v 1.2 2002/09/28 17:02:17 dhanvey Exp

// ============================================================================
//
// = FILENAME
//    DsEventLogAdmin.idl
//
// = DESCRIPTION
//    This module defines the EventLog and
//    EventLogFactory interfaces.
//
// = AUTHOR
//    D A Hanvey (d.hanvey@qub.ac.uk)
//
// ============================================================================

#ifndef DS_EVENT_LOG_ADMIN_IDL
#define DS_EVENT_LOG_ADMIN_IDL

#include "CosEventChannelAdmin.idl"
// CORBA Event Service

#include "DsLogAdmin.idl"

#pragma prefix "omg.org"

module DsEventLogAdmin
{
  interface EventLog : DsLogAdmin::Log,
			CosEventChannelAdmin::EventChannel{};

  interface EventLogFactory : DsLogAdmin::LogMgr,
			CosEventChannelAdmin::ConsumerAdmin
  {
	EventLog create (
		in DsLogAdmin::LogFullActionType	full_action,
		in unsigned long long			max_size,
		in DsLogAdmin::CapacityAlarmThresholdList	thresholds,
		out DsLogAdmin::LogId id
	) raises (DsLogAdmin::InvalidLogFullAction,
                    DsLogAdmin::InvalidThreshold);

	EventLog create_with_id (
		in DsLogAdmin::LogId id,
		in DsLogAdmin::LogFullActionType full_action,
		in unsigned long long max_size,
		in DsLogAdmin::CapacityAlarmThresholdList thresholds
	) raises (DsLogAdmin::LogIdAlreadyExists,
                    DsLogAdmin::InvalidLogFullAction,
			  DsLogAdmin::InvalidThreshold);

	};
  
};

#endif /* DS_EVENT_LOG_ADMIN_IDL */

⌨️ 快捷键说明

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