summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/ciao/CIAO_CosNotify.idl
blob: ae2a19acff2dd400bbe2b74a9faec2353de45474 (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
// $Id$

/**
 * @file CIAO_CosNotify.idl
 *
 * @author George Edwards
 *
 * @brief Interfaces for configuring CIAO's notification service.
 */

#include "CIAO_Events.idl"
#include <orbsvcs/orbsvcs/CosNotifyFilter.idl>

module CIAO
{

  interface CosNotify_Consumer_Config :
    Consumer_Config
  {

    readonly attribute CosNotifyFilter::Filter notify_filter;

    readonly attribute CosNotification::QoSProperties notify_qos;

  };

  interface CosNotify_Supplier_Config :
    Supplier_Config
  {

    readonly attribute CosNotifyFilter::Filter notify_filter;

    readonly attribute CosNotification::QoSProperties notify_qos;

  };

};