RTI Cloud Discovery Service  Version 6.1.2
Service API

RTI Cloud Discovery Service can be deployed as a native library linked into your application in select architectures. More...

Data Structures

class  rti::cds::Service
 The RTI Cloud Discovery Service. More...
 
class  rti::cds::DomainListProperty
 Specifies the list of domain IDs to allow or deny. Overrides XML configuration if specified. More...
 
class  rti::cds::TransportUnicastProperty
 Specifies the alias name of the transport to be used by RTI Cloud Discovery Service for sending or receiving announcements. It also indicates the port where incoming participant announcements are received. Overrides XML configuration if specified. More...
 
class  rti::cds::ServiceProperty
 Configuration properties for a RTI Cloud Discovery Service object. More...
 

Detailed Description

RTI Cloud Discovery Service can be deployed as a native library linked into your application in select architectures.

This API allows you to create, configure and start RTI Cloud Discovery Service instances from your application.

The following code shows the typical use of the API:

int main ()
{
.cfg_file("MyCloudDiscoveryService.xml")
.service_name("MyCloudDiscoveryService"));
...
service.start();
while (keep_running) {
sleep();
...
}
return 0;
}

Instead of a file, you can use XML strings to configure RTI Cloud Discovery Service. See ServiceProperty for more information.

To build your application you need to link with the RTI Cloud Discovery Service native library in <RTI Connext home>/bin/<architecture>/ .

Development Requirements

Unix-based Systems Windows Systems
Shared Librarieslibnddscpp2.so nddscpp2.dll
^ librticlouddiscoveryservice.so rticlouddiscoveryservice.dll
^ librtiroutingservice.so rtiroutingservice.dll
^ librtirsinfrastructure.so rtirsinfrastructure.dll
^ librtidlc.so rtidlc.dll
^ libnddsc.so nddsc.dll
^ librtixml2.so rtixml2.dll
^ libnddscore.so nddscore.dll
Headers rti/cds/CloudDiscoveryService.hpp