summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/DsEventLogAdmin.idl
blob: 57c5b44cb01b962bbe45a2001369baa566d69d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// $Id$

// ============================================================================
//
// = 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 */