summaryrefslogtreecommitdiff
path: root/TAO/tests/MT_Timeout/Test.idl
blob: 0020cabe600d078a0d1c0e210b2a6c607b85135e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

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 ();
  };
};