summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/Generic_Servant/test.idl
blob: bab53c761a08ac7ee591775ecd955cc171387463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

interface test
{
  void method ();
  // A twoway operation.

  oneway void oneway_method ();
  // A oneway operation.

  void timed_method (in unsigned long timeout);
  // A timed twoway operation.

  oneway void timed_oneway_method (in unsigned long timeout);
  // A timed oneway operation.

  void shutdown ();
  // Shutdown the server.
};