summaryrefslogtreecommitdiff
path: root/CIAO/ciaosvcs/Events/CIAO_RTEC/CIAO_RTEvent.idl
blob: b51d00ec07de7116fda5f0780f847e09f16face2 (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
// $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;
  };

};