Cyclone ISO C++ API Reference Guide
|
Namespaces | |
qos | |
Classes | |
class | DomainParticipant |
A DomainParticipant represents the local membership of the application in a Domain. More... | |
class | DomainParticipantListener |
DomainParticipant events Listener. More... | |
class | NoOpDomainParticipantListener |
DomainParticipant events Listener. More... | |
Functions | |
DomainParticipant | find (uint32_t id) |
void | ignore (const dds::domain::DomainParticipant &dp, const dds::core::InstanceHandle &handle) |
template<typename FwdIterator > | |
void | ignore (const dds::domain::DomainParticipant &dp, FwdIterator begin, FwdIterator end) |
DomainParticipant dds::domain::find | ( | uint32_t | id | ) |
This operation retrieves a previously-created DomainParticipant belonging to the specified domain_id. If no such DomainParticipant exists, the operation will return a dds::core::null DomainParticipant.
id | the domain id |
void dds::domain::ignore | ( | const dds::domain::DomainParticipant & | dp, |
const dds::core::InstanceHandle & | handle | ||
) |
This function enables you to ignore the entity represented by the given InstanceHandle for the specific DomainParticipant.
This operation is not yet implemented. It is scheduled for a future release.
dp | the DomainParticipant for which the remote entity will be ignored |
handle | the InstanceHandle of the remote entity that has to be ignored |
void dds::domain::ignore | ( | const dds::domain::DomainParticipant & | dp, |
FwdIterator | begin, | ||
FwdIterator | end | ||
) |
This function enables you to ignore a series of entities whose instance handles are made available via the provided iterators.
This operation is not yet implemented. It is scheduled for a future release.
dp | the DomainParticipant for which the remote entity will be ignored |
begin | the begin iterator for the InstanceHandle to ignore |
end | the end iterator for the InstanceHandle to ignore |