summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event_Forwarder.idl
blob: 26360119f31866ef0ddf95477035cb103a86b33a (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

/**
 * @file Event_Forwarder.idl
 *
 * @brief
 *
 * @author Pradeep Gore <pradeep@oomworks.com>
 */

#ifndef _EVENT_FORWARDER_IDL_
#define _EVENT_FORWARDER_IDL_

#include "CosNotification.idl"
#include "CosNotifyChannelAdmin.idl"

#pragma prefix ""

/**
 * @namespace Event_Forwarder
 *
 * @brief
 */
module Event_Forwarder
{
  interface StructuredProxyPushSupplier : CosNotifyChannelAdmin::StructuredProxyPushSupplier
  {
    void forward_structured (in CosNotification::StructuredEvent event);

    void forward_structured_no_filtering (in CosNotification::StructuredEvent event);

    void forward_any (in any event);

    void forward_any_no_filtering (in any event);
  };

  interface ProxyPushSupplier : CosNotifyChannelAdmin::ProxyPushSupplier
  {
    void forward_structured (in CosNotification::StructuredEvent event);

    void forward_structured_no_filtering (in CosNotification::StructuredEvent event);

    void forward_any (in any event);

    void forward_any_no_filtering (in any event);
  };
};

#endif /* _EVENT_FORWARDER_IDL_ */