summaryrefslogtreecommitdiff
path: root/modules/CIAO/ccm/CCM_EventConsumerBase.idl
blob: 6a1f404eb5281e0e36ea0a7dff70c68033272eb5 (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
// $Id$

#if !defined (CCM_EVENTCONSUMERBASE_IDL)
#define CCM_EVENTCONSUMERBASE_IDL

#include "ccm/CCM_EventBase.idl"
#include "tao/Typecode_types.pidl"
#include "tao/orb_types.pidl"

module Components
{
  typeprefix Components "omg.org";

  exception BadEventType
  {
    CORBA::RepositoryId expected_event_type;
  };

  interface EventConsumerBase
  {
    void push_event (in EventBase evt) raises (BadEventType);
  };
};
#endif /* CCM_EVENTCONSUMERBASE_IDL */