summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/tests/CIAO/FTComponents/Worker.idl
blob: 2628afcbbfec309ccdc3b8f0b77b89cac46c0af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module DeCoRAM
{
  interface Worker
  {
    /**
     * @param execution_time indicates how long the method will run in
     *        ms.
     * @return time in ms that has elapsed since the method started.
     */
    long run_task (in double execution_time);
    void stop ();
  };
};