public class DomainParticipantFactoryImpl extends DomainParticipantFactoryPOA (Code)
The sole purpose of this class is to allow the creation and destruction of
DomainParticipant objects. DomainParticipantFactory itself has no factory. It
is either a pre-existing singleton object that can be accessed by means of
the get_instance class operation on the DomainParticipantFactory.
create_participant(int domainId, org.omg.dds.DomainParticipantQos qos, org.omg.dds.DomainParticipantListener a_listener) This operation creates a new DomainParticipant object.
public int
delete_participant(org.omg.dds.DomainParticipant a_participant) This operation deletes an existing DomainParticipant.
public org.omg.dds.DomainParticipant create_participant(int domainId, org.omg.dds.DomainParticipantQos qos, org.omg.dds.DomainParticipantListener a_listener)(Code)
This operation creates a new DomainParticipant object. The
DomainParticipant signifies that the calling application intends to join
the Domain identified by the domainId argument.
delete_participant
public int delete_participant(org.omg.dds.DomainParticipant a_participant)(Code)
This operation deletes an existing DomainParticipant. This operation can
only be invoked if all domain entities belonging to the participant have
already been deleted.
Parameters: a_participant - RETCODE_OK.value if succes Otherwise the errorPRECONDITION_NOT_MET is returned.