summaryrefslogtreecommitdiff
path: root/TAO/tests/MT_Timeout/Test.idl
blob: 0d92a794abbe4a7a6940516bd3354592b5de4092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// $Id$
//

module Test
{
  /// A very simple interface
  interface Sleep_Service
  {
    /// Sleep for @c microseconds
    void go_to_sleep (in unsigned long microseconds);

    /// A method to shutdown the ORB
    /**
     * This method is used to simplify the test shutdown process
     */
    oneway void shutdown ();
  };
};