RTI Connext .Net APIs  Version 5.2.0
 All Classes Namespaces Functions Variables Enumerations Properties Groups Pages
DDS::TransportMulticastMappingFunction_t Class Reference

Type representing an external mapping function. More...

#include <managed_infrastructure.h>

Public Attributes

System::String^ dll
 Specifies a dynamic library that contains a mapping function.
 
System::String^ function_name
 Specifies the name of a mapping function.
 

Detailed Description

Type representing an external mapping function.

A mapping function is defined by a dynamic library name and a function name.

QoS:
DDS::TransportMulticastMappingQosPolicy

Member Data Documentation

System::String ^ DDS::TransportMulticastMappingFunction_t::dll

Specifies a dynamic library that contains a mapping function.

A relative or absolute path can be specified.

If the name is specified as "foo", the library name on Linux systems will be libfoo.so; on Windows systems it will be foo.dll.

[default] NULL

System::String ^ DDS::TransportMulticastMappingFunction_t::function_name

Specifies the name of a mapping function.

This function must be implemented in the library specified in DDS::TransportMulticastMappingFunction_t::dll.

The function must implement the following interface:

int function(const char* topic_name, int numberOfAddresses);

The function must return an integer that indicates the index of the address to use for the given topic_name. For example, if the first address in the list should be used, it must return 0; if the second address in the list should be used, it must return 1, etc.


RTI Connext .Net APIs Version 5.2.0 Copyright © Sun Jun 21 2015 Real-Time Innovations, Inc