summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ServerObject.pidl
blob: 04612f36c565960712d2eb04a38f3083f346e59d (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
// -*- IDL -*-

//=============================================================================
/**
 *  @file   ServerObject.pidl
 *
 * $Id$
 *
 * This file was used to generate the code in ServerObject{C,S}.{h,inl,cpp}
 *
 * The command used to generate code from this file is:
 *
 *   tao_idl -Gp -Gd -Ge 1 -Sc -GT -o orig
 *       -Wb,export_macro=TAO_PortableServer_Export
 *       -Wb,export_include=portableserver_export.h
 *       -Wb,pre_include="ace/pre.h"
 *       -Wb,post_include="ace/post.h" ServerObject.pidl
 *
 */
//=============================================================================

module ImplementationRepository
{
  /**
   * @brief Server Side IR Object
   *
   * This object, which exists on the servers that use the
   * Implementation Repository (IR), is used to control or check the
   * status of the server by the IR.
   */

  interface ServerObject
  {
    /// Check the liveness of a server.
    void ping ();

    /// Try to shutdown the server gracefully.
    void shutdown ();
  };
};