public interface NamingBase
This is the abstract interface class for NamingServer management. Concrete management classes must implement the following pure virtual functions.
| Modifier and Type | Method and Description |
|---|---|
void |
bindObject(java.lang.String name,
ManagerServant mgr)
Pure virtual function to bind the specified ManagerServants
to NamingService
|
void |
bindObject(java.lang.String name,
PortBase port) |
void |
bindObject(java.lang.String name,
RTObject_impl rtobj)
Pure virtual function to bind the specified objects
to the NamingService
|
void |
bindPortObject(java.lang.String name,
PortBase port)
Binds specified CORBA object to NamingService.
|
CorbaNaming |
getCorbaNaming() |
boolean |
isAlive()
Check if the name service is alive
|
RTObject[] |
string_to_component(java.lang.String name)
Gets RTC objects by rtcloc form.
|
void |
unbindObject(java.lang.String name)
Pure virtual function to unbind the specified objects from
NamingService
|
void bindObject(java.lang.String name,
RTObject_impl rtobj)
name -
The name to be bound to the NamingServicertobj -
The target objects to be bound to the NamingSerivcevoid bindObject(java.lang.String name,
PortBase port)
void bindObject(java.lang.String name,
ManagerServant mgr)
name -
The name to be bound to the NamingServicemgr -
The target objects to be bound to the NamingSerivcevoid unbindObject(java.lang.String name)
name -
The name of the object released from NamingServiceboolean isAlive()
RTObject[] string_to_component(java.lang.String name)
void bindPortObject(java.lang.String name,
PortBase port)
Binds specified CORBA object to NamingService.
name -
The name to be bound to the NamingServiceport -
The target objects to be bound to the objectCorbaNaming getCorbaNaming()