Interface Definition Language (IDL)
Interface Definition Language (IDL)
- Defines and makes public the interface to the distributed components
interface NameService {
void BindName ( in string objectName,
in Object objectRef );
long ResolveName ( in string objectName,
out Object objectRef );
void BindContext ( in string objectName,
in string contextName );
long getContext ( in string objectName,
out string contextName );
};