summaryrefslogtreecommitdiff
path: root/TAO/tao/ImR_Client/ServerObject.idl
blob: 38b094a59913d4e37615633bc6b33cb439899e5e (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
// -*- IDL -*-

#ifndef TAO_IMRCLIENT_SERVEROBJECT_PIDL
#define TAO_IMRCLIENT_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.
    oneway void shutdown ();
  };
};

#endif /* TAO_IMRCLIENT_SERVEROBJECT_PIDL */