summaryrefslogtreecommitdiff
path: root/trunk/CIAO/examples/Swapping/Sender/Sender.idl
blob: e2c8ca64b0ea741bc3e43b604ab296bee50c976d (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
//$Id$

#ifndef CIAO_SENDER_IDL
#define CIAO_SENDER_IDL


#include "../Hello_Base/Hello_Base.idl"

module Hello
{
  /* This is a Sender specific interface which will be used to get the
   * process start.
   */
  
  interface trigger
  {
    void start ();
  };

  component Sender supports trigger
  {
    provides ReadMessage push_message;
    publishes TimeOut click_out;
    attribute string local_message;
  };

  home SenderHome manages Sender
  {
  };

};
#endif /*CIAO_SENDER_IDL*/