summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Interfaces/NodeManager.idl
blob: ea964a4e14b9f3fe37474e049d3e807fc5ffa0a6 (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
// $Id$

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

#include "ciao/Deployment.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 NodeManager : Deployment::NodeManager
  {
    // Canonical name of this daemon
    readonly attribute string name;

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