summaryrefslogtreecommitdiff
path: root/CIAO/ccm/CCM_EventConsumerBase.idl
blob: 662af48d1fadcc3498804a71acb9148228d8a97f (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
// $Id$
/// Compliant with OMG 06-04-01 Section 6.6.2

#if !defined (CCM_EVENTCONSUMERBASE_IDL)
#define CCM_EVENTCONSUMERBASE_IDL

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

#if !defined (CCM_NOEVENT)
module Components
{
  typeprefix Components "omg.org";

  exception BadEventType
  {
    CORBA::RepositoryId expected_event_type;
  };

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