summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Daemon/Daemon.idl
blob: 5d856ab13877941bbc3227e6ecf72c327c030720 (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 Daemon.idl
 *
 * @brief Controling interface for managing and controling CIAO daemon.
 */

module CIAO
{
  exception NotFound {};

  /**
   * @brief CIAO daemon process control program.
   */
  interface Daemon
  {
    // Canonical name of this daemon
    readonly attribute string name;

    // Acquire a specific service
    Object get_service (in string svc_name)
      raises (NotFound);

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