summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP/BasicSPE.idl
blob: 4de945c339fece472df9ad31d7ce03ab8d321fbf (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
55
56
57
58
// $Id$

//=============================================================================
/**
 * @file BasicSPE.idl
 *
 * Executor definitions of events, and common interfaces used in
 * BasicSP module.  This file should eventually be generated by the
 * CCIDL compiler automatically when it does become available.
 *
 * @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
 */
//=============================================================================

#ifndef CIAO_BASICSPE_IDL
#define CIAO_BASICSPE_IDL


#include "BasicSP.idl"

module BasicSP
{
  /**
   * @interface CCM_ReadData
   *
   * Executor interface mapping for supported interfaces.
   *
   */
  local interface CCM_ReadData : ReadData
  {
  };

  /**
   * @interface CCM_Timeout
   *
   * Executor interface for timeout consumers.  This interface is
   * only needed if a component implementation uses the
   * ExecutorLocator strategy.
   */
  local interface CCM_TimeOut
    {
      void push (in TimeOut to);
    };

  /**
   * @interface CCM_DataAvailable
   *
   * Executor interface for DataAvailable consumers.  This interface
   * is only needed if a component implementation uses the
   * ExecutorLocator strategy.
   */
  local interface CCM_DataAvailable
    {
      void push (in DataAvailable da);
    };
};

#endif /* CIAO_BASICSPE_IDL */