summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
blob: 3fced0b1150ecafbcf7befec3afaa9c4b7487007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// -*- IDL -*-

// $Id$

#include "ImR_Activator.idl"

module ImplementationRepository
{
  interface Locator : Administration
  {
    // returns a token that can be used (along with activator name) to unregister the activator.
    long register_activator (in string name, in Activator act);
 
    // You must pass in the token returned from register_activator.
    void unregister_activator (in string name, in long token);

    // The ImR_Activator calls this method to notify death of child
    // process that it had started.
    void notify_child_death (in string name);
  };
};