RTI Recording Service Version 7.1.0
RTI Recording Library API

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

Data Structures

class  rti::recording::Logger
 The singleton type used to configure RTI Recording Service verbosity. More...
 
class  rti::recording::Service
 The RTI Recording Service. More...
 
struct  rti::recording::ApplicationRoleKind_def
 
class  rti::recording::ServiceProperty
 Configuration for a RTI Recording Service object. More...
 

Detailed Description

RTI Recording 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 Recording Service instances from your application.

The following code shows the typical use of the API:

int main ()
{
.cfg_file("MyRecorder.xml")
.service_name("MyRecorder"));
...
service.start();
while(keep_running) {
sleep();
...
}
return 0;
}
Configuration for a RTI Recording Service object.
Definition: ServiceProperty.hpp:105
The RTI Recording Service.
Definition: Service.hpp:83

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

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

Development Requirements

Linux Systems Windows Systems
Shared Libraries libnddscpp2.so nddscpp2.dll
Shared Libraries librtiroutingservice.so rtiroutingservice.dll
librtirsinfrastructure.so rtirsinfrastructure.dll
librtirecordingservice.so rtirecordingservice.dll
librtidlc.so rtidlc.dll
libnddsmetp.so nddsmetp.dll
libnddsc.so nddsc.dll
librtixml2.so rtixml2.dll
libnddscore.so nddscore.dll
Headers rti/recording/RecordingService.hpp