summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/RTCosScheduling/testSched.idl
blob: c2d98c7cf882f902aa9c7e2d4484356ac1cc753d (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
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    testSched.idl
 *
 *  $Id$
 *
 *  @author Matt Murphy <murphym@cs.uri.edu>
 */
//=============================================================================

/**
 * @class Object1
 *
 * @brief Used by the RTCORBA 1.0 scheduling service.
 */

#ifndef TEST_SCHED
#define TEST_SCHED

/**
 * Object1 class is used in the RTCORBA 1.0 Scheduling
 * Service test.
 */
module testSched {

  exception testSchedException {};

  interface Object1 {
    /**
     * method1 executes work at the location specified by the object reference.
     * It sleeps for the number of seconds specified.
     *
     * @param seconds The number of seconds to sleep for.
     */
    void method1(in string activity, in long second, inout string output_file)
      raises (testSchedException);
  };

};

#endif  /* TEST_SCHED */