summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2018-12-05 13:17:15 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2018-12-05 13:17:15 +0100
commita15d4b768a6018924ac1cf6aaa0f45de0fa64349 (patch)
tree997e68bced80c463fec6dc45c0e59caba85b129d /TAO/orbsvcs/ImplRepo_Service
parent50e1e0f88b2ed66d22b24cbed35a806758f58654 (diff)
downloadATCD-a15d4b768a6018924ac1cf6aaa0f45de0fa64349.tar.gz
Doxygen changes
* TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl:
Diffstat (limited to 'TAO/orbsvcs/ImplRepo_Service')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl10
1 files changed, 6 insertions, 4 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
index b66c5d451cf..e4ca1b9a665 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
@@ -6,18 +6,20 @@ module ImplementationRepository
interface Locator : AdministrationExt
{
- /// returns a token that can be used (along with activator name) to
+ /// Register an activator
+ /// @return 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.
+ /// Unregister an activator. You must pass in the token
+ /// returned from register_activator.
void unregister_activator (in string name, in long token);
- /// Newer Activators call this method to notify death of child
+ /// Activators call this method to notify death of child
/// process including pid to disambiguate child instances
void child_death_pid (in string name, in long pid);
- /// Newer Activators call this method to notify spawn of child
+ /// Activators call this method to notify spawn of child
/// process to supply pid for reference
void spawn_pid (in string name, in long pid);
};