summaryrefslogtreecommitdiff
path: root/ciao/ComponentServer/CIAO_CS_Client.idl
blob: c966ac7ccf5831cf5e1ae0463dab70c36b4315d9 (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
/**
 * @file CIAO_CS_Client.idl
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 * $Id$
 * A couple CIAO-specific extensions to the component server client
 * interfaces.
 */

#ifndef CIAO_COMPONENTSERVER_IDL_
#define CIAO_COMPONENTSERVER_IDL_

#include <ccm/ComponentServer/CCM_ComponentServer_Client.idl>

module CIAO
{
  module Deployment
  {
    interface ServerActivator : ::Components::Deployment::ServerActivator
    {
      /// Used by spawned component servers to notify the server
      /// activator of their object reference and retrieve
      /// configuration information.
      void component_server_callback (in ::Components::Deployment::ComponentServer serverref,
                                      in string server_UUID,
                                      out ::Components::ConfigValues config);

      void configuration_complete (in string server_UUID);
    };
  };
};


#endif