summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.idl
blob: 072bf1f89a13c98d508befee239875cc814ca11d (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
// $Id$

/**
 * @file CIAO_RTEvent.idl
 *
 * @author Gan Deng <dengg@dre.vanderbilt.edu>
 * @author George Edwards
 *
 * @brief Interfaces for configuring CIAO's RT event channel.
 */

#include <ciaosvcs/Events/CIAO_Events_Base/CIAO_Events.idl>
#include <orbsvcs/orbsvcs/RtecEventChannelAdmin.idl>

module CIAO
{
  interface RTEvent_Consumer_Config :
    Consumer_Config
  {
    //void start_logical_and_group (in long size);

    //void start_negation ();

    //void insert_bitmasked_value (in long source_mask,
    //                             in long type_mask,
    //                             in long source_value,
    //                             in long type_value);

    readonly attribute RtecEventChannelAdmin::ConsumerQOS rt_event_qos;
  };

  interface RTEvent_Supplier_Config :
    Supplier_Config
  {
    readonly attribute RtecEventChannelAdmin::SupplierQOS rt_event_qos;
  };

  interface CIAO_RT_Event_Service :
    CIAO_Event_Service
  {
    boolean create_addr_serv (in string name,
                              in unsigned short port,
                              in string address);

    boolean create_sender (in string addr_serv_id);

    boolean create_receiver (in string addr_serv_id,
                             in boolean is_multicast,
                             in unsigned short listen_port);

    RtecEventChannelAdmin::EventChannel tao_rt_event_channel ();
  };

};