📄 dseventlogadmin.idl
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -