summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/Interfaces/NodeManagerDaemon.idl
blob: 617df0f080f8244d7a2db82ea677e3098db8f6da (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
// $Id$

/**
 * @file NodeManagerDaemon.idl
 *
 * @brief Controling interface for managing and controling CIAO daemon.
 */

#include "ciao/Deployment_NodeManager.idl"
#include "ciao/Deployment_NodeApplicationManager.idl"

module CIAO
{
  /**
   * @brief CIAO daemon process control program.
   *
   * @@The Inheritage might cause binary code bloating but
   * it's an easy way of combining features. In the future we could
   * move this definition into Deployment.idl.
   */
  interface NodeManagerDaemon : Deployment::NodeManager
  {
    // Canonical name of this daemon
    readonly attribute string name;

    // Shutdown the daemon process.
    oneway void shutdown ();

    /// RACE specific extension.
    /// Modify the priority of a node application process.
    long set_priority (in string plan_id,
                       in string cid,
                       in ::Deployment::Sched_Params nm_params);
  };
};