RTI Routing Service Version 7.3.0
|
Entity responsible for administering inputs and outputs. More...
Data Structures | |
struct | RTI_RoutingServiceLoanedSamples |
A pair of sample and sample info arrays. They are assumed to be of the same length. More... | |
struct | RTI_RoutingServiceProcessor |
Main Processor class. More... | |
struct | RTI_RoutingServiceProcessorPlugin |
ProcessorPlugin class. More... | |
Macros | |
#define | RTI_RoutingServiceProcessorPlugin_initialize(plugin) |
Utility macro to initialize a ProcessorPlugin object. More... | |
Typedefs | |
typedef void(* | RTI_RoutingServiceProcessor_OnRouteEventFcn) (void *processor_data, RTI_RoutingServiceRouteEvent *route_event, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that processes an event that occurred in the Route where the Processor is installed. More... | |
typedef void(* | RTI_RoutingServiceProcessor_UpdateFcn) (void *processor_data, const struct RTI_RoutingServiceProperties *properties, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that updates a Processor configuration. More... | |
typedef struct RTI_RoutingServiceProcessorPlugin *(* | RTI_RoutingServiceProcessorPlugin_CreateFcn) (const struct RTI_RoutingServiceProperties *properties, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that creates a ProcessorPlugin. More... | |
typedef void(* | RTI_RoutingServiceProcessorPlugin_DeleteFcn) (struct RTI_RoutingServiceProcessorPlugin *plugin, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that deletes a ProcessorPlugin. More... | |
typedef struct RTI_RoutingServiceProcessor *(* | RTI_RoutingServiceProcessorPlugin_CreateProcessorFcn) (void *processor_plugin_data, RTI_RoutingServiceRoute *route, const struct RTI_RoutingServiceProperties *properties, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that creates a route Processor. More... | |
Enumerations | |
enum | RTI_RoutingServiceRouteEventKind |
Representation of the different event kinds triggered for a Route. More... | |
Functions | |
const char * | RTI_RoutingServiceInput_get_name (RTI_RoutingServiceInput *self) |
Returns the name of the specified input. More... | |
const struct RTI_RoutingServiceStreamInfo * | RTI_RoutingServiceInput_get_stream_info (RTI_RoutingServiceInput *self) |
DDS_Boolean | RTI_RoutingServiceInput_is_active (RTI_RoutingServiceInput *self) |
Checks whether an Input is active. More... | |
DDS_Boolean | RTI_RoutingServiceInput_take (RTI_RoutingServiceInput *self, struct RTI_RoutingServiceLoanedSamples *loaned_samples) |
Takes all the available samples in this Input into the specified loaned samples instance. More... | |
DDS_Boolean | RTI_RoutingServiceInput_take_w_selector (RTI_RoutingServiceInput *self, struct RTI_RoutingServiceLoanedSamples *loaned_samples, const struct RTI_RoutingServiceSelectorState *selector) |
Takes all the available samples in this Input into the specified loaned samples instance, filtering samples based on the given data selector. More... | |
DDS_Boolean | RTI_RoutingServiceInput_read (RTI_RoutingServiceInput *self, struct RTI_RoutingServiceLoanedSamples *loaned_samples) |
Reads all the available samples in this Input into the specified loaned samples instance. More... | |
DDS_Boolean | RTI_RoutingServiceInput_read_w_selector (RTI_RoutingServiceInput *self, struct RTI_RoutingServiceLoanedSamples *loaned_samples, const struct RTI_RoutingServiceSelectorState *selector) |
Reads all the available samples in this Input into the specified loaned samples instance, filtering samples based on the given data selector. Cannot be null. More... | |
DDS_Boolean | RTI_RoutingServiceInput_return_loan (RTI_RoutingServiceInput *self, struct RTI_RoutingServiceLoanedSamples *loaned_samples) |
Returns a loan on the read or taken samples. More... | |
RTI_RoutingServiceSelectorStateQueryData | RTI_RoutingServiceInput_create_content_query (RTI_RoutingServiceInput *self, RTI_RoutingServiceSelectorStateQueryData old_query_data, const struct RTI_RoutingServiceSelectorContent *content) |
Creates a query object that selects the data with the specified filter. More... | |
DDS_Boolean | RTI_RoutingServiceInput_delete_content_query (RTI_RoutingServiceInput *self, RTI_RoutingServiceSelectorStateQueryData query_data) |
Deletes a content query created from this Input. More... | |
const char * | RTI_RoutingServiceOutput_get_name (RTI_RoutingServiceOutput *self) |
Returns the name of the specified output. More... | |
const struct RTI_RoutingServiceStreamInfo * | RTI_RoutingServiceOutput_get_stream_info (RTI_RoutingServiceOutput *self) |
Returns the type information associated with the specified Output. The type information refers to the format of the stream that this Output's write operation expects to receive from the processor of the route. More... | |
DDS_Boolean | RTI_RoutingServiceOutput_write (RTI_RoutingServiceOutput *self, const RTI_RoutingServiceSample *sample_array, const RTI_RoutingServiceSampleInfo *sample_info_array, int *array_length) |
Writes a list of data and information samples. More... | |
DDS_Boolean | RTI_RoutingServiceOutput_write_sample (RTI_RoutingServiceOutput *self, const RTI_RoutingServiceSample data, const RTI_RoutingServiceSampleInfo info) |
Writes a single sample, optionally with metatada indicated by an info sample. More... | |
int | RTI_RoutingServiceRoute_get_input_count (RTI_RoutingServiceRoute *self) |
Returns the number of inputs associated with this Route. More... | |
DDS_Boolean | RTI_RoutingServiceRoute_is_input_enabled (RTI_RoutingServiceRoute *self, int index) |
Checks whether the Input with the specified index is enabled. More... | |
RTI_RoutingServiceInput * | RTI_RoutingServiceRoute_get_input_at (RTI_RoutingServiceRoute *self, int index) |
Returns the Input at the specified index. More... | |
RTI_RoutingServiceInput * | RTI_RoutingServiceRoute_lookup_input_by_name (RTI_RoutingServiceRoute *self, const char *input_name) |
Looks up the specified Input by its configuration name. More... | |
int | RTI_RoutingServiceRoute_get_output_count (RTI_RoutingServiceRoute *self) |
Returns the number of outputs associated with this Route. More... | |
DDS_Boolean | RTI_RoutingServiceRoute_is_output_enabled (RTI_RoutingServiceRoute *self, int index) |
Checks whether the Output at the specified index is enabled. More... | |
RTI_RoutingServiceOutput * | RTI_RoutingServiceRoute_get_output_at (RTI_RoutingServiceRoute *self, int index) |
Returns the Output at the specified index. More... | |
RTI_RoutingServiceOutput * | RTI_RoutingServiceRoute_lookup_output_by_name (RTI_RoutingServiceRoute *self, const char *output_name) |
Looks up the specified Output by its configuration name. More... | |
void | RTI_RoutingServiceRoute_wakeup_route (RTI_RoutingServiceRoute *route) |
Sends a wakeup event to the specified Route. This operation can be safely called from any thread context. More... | |
void | RTI_RoutingServiceRoute_get_period (RTI_RoutingServiceRoute *self, struct DDS_Duration_t *period) |
Get the current period of the periodic event for this Route. More... | |
void | RTI_RoutingServiceRoute_set_period (RTI_RoutingServiceRoute *self, const struct DDS_Duration_t *period) |
Changes the periodic event period for this route. More... | |
RTI_RoutingServiceInput * | RTI_RoutingServiceRoute_get_first_input (RTI_RoutingServiceRoute *self) |
Returns the first enabled Input in this route. More... | |
RTI_RoutingServiceInput * | RTI_RoutingServiceRoute_get_next_input (RTI_RoutingServiceRoute *self, RTI_RoutingServiceInput *prev_input) |
Returns the next enabled Input sibling to the specified input. More... | |
RTI_RoutingServiceOutput * | RTI_RoutingServiceRoute_get_first_output (RTI_RoutingServiceRoute *self) |
Returns the first enabled output in this route. More... | |
RTI_RoutingServiceOutput * | RTI_RoutingServiceRoute_get_next_output (RTI_RoutingServiceRoute *self, RTI_RoutingServiceOutput *prev_output) |
Returns the next enabled Output sibling to the specified output. More... | |
const char * | RTI_RoutingServiceRoute_get_full_name (RTI_RoutingServiceRoute *self) |
Returns the fully-qualified name of this Route, derived from the XML configuration. More... | |
RTI_RoutingServiceRouteEventKind | RTI_RoutingServiceRouteEvent_get_kind (RTI_RoutingServiceRouteEvent *self) |
Returns the kind of this RouteEvent. More... | |
RTI_RoutingServiceRoute * | RTI_RoutingServiceRouteEvent_get_route (RTI_RoutingServiceRouteEvent *self) |
Returns the Route that triggered the event. More... | |
void * | RTI_RoutingServiceRouteEvent_get_event_data (RTI_RoutingServiceRouteEvent *self) |
Returns the data associated with the event. More... | |
void * | RTI_RoutingServiceRouteEvent_get_affected_entity (RTI_RoutingServiceRouteEvent *self) |
Returns the entity that is directly affected by the event. More... | |
Entity responsible for administering inputs and outputs.
#define RTI_RoutingServiceProcessorPlugin_initialize | ( | plugin | ) |
Utility macro to initialize a ProcessorPlugin object.
This macro must be called to initialize the value returned by RTI_RoutingServiceProcessorPlugin_CreateFcn.
plugin | Pointer to the ProcessorPlugin object. |
typedef void(* RTI_RoutingServiceProcessor_OnRouteEventFcn) (void *processor_data, RTI_RoutingServiceRouteEvent *route_event, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that processes an event that occurred in the Route where the Processor is installed.
processor_data | In. Implementation data of the Processor associated with the Route that triggered the event. |
route_event | In. Event that was triggered within the Route. |
env | Out. Environment for error indications. |
typedef void(* RTI_RoutingServiceProcessor_UpdateFcn) (void *processor_data, const struct RTI_RoutingServiceProperties *properties, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that updates a Processor configuration.
processor_data | In. Implementation data. |
properties | In. New configuration properties. |
env | Out. Environment for error indications. |
typedef struct RTI_RoutingServiceProcessorPlugin *(* RTI_RoutingServiceProcessorPlugin_CreateFcn) (const struct RTI_RoutingServiceProperties *properties, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that creates a ProcessorPlugin.
properties | In. Configuration properties for the ProcessorPlugin. |
env | Out. Environment for error indications. |
NULL
.typedef void(* RTI_RoutingServiceProcessorPlugin_DeleteFcn) (struct RTI_RoutingServiceProcessorPlugin *plugin, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that deletes a ProcessorPlugin.
plugin | In. ProcessorPlugin to be deleted. |
env | Out. Environment for error indications. |
typedef struct RTI_RoutingServiceProcessor *(* RTI_RoutingServiceProcessorPlugin_CreateProcessorFcn) (void *processor_plugin_data, RTI_RoutingServiceRoute *route, const struct RTI_RoutingServiceProperties *properties, RTI_RoutingServiceEnvironment *env) |
Prototype of the function that creates a route Processor.
This function is called when a Processor is created.
processor_plugin_data | implementation data of the plugin from which the Processor is created |
route | Processor to be deleted. |
properties | Configuration properties for the Processor. These properties correspond to the properties specified within the tag <processor>. |
env | Environment for error indications. |
Representation of the different event kinds triggered for a Route.
const char * RTI_RoutingServiceInput_get_name | ( | RTI_RoutingServiceInput * | self | ) |
Returns the name of the specified input.
The input name is given by the attribute of the corresponding XML tag in the configuration.
self | In. Input for which the name is returned. |
const struct RTI_RoutingServiceStreamInfo * RTI_RoutingServiceInput_get_stream_info | ( | RTI_RoutingServiceInput * | self | ) |
Returns the type information associated with the specified Input. The TypeInformation refers to the format of the stream that the specified Input's read operation expects to receive.
self | In. Input for which the type information is returned. |
DDS_Boolean RTI_RoutingServiceInput_is_active | ( | RTI_RoutingServiceInput * | self | ) |
Checks whether an Input is active.
An Input is active when it has data available but not yet read. That is, the data available notification has been received but a call to read or take the samples has not been made.
self | In. Input to be checked. Cannot be null. |
DDS_BOOLEAN_FALSE
if the Input is inactive, otherwise, DDS_BOOLEAN_TRUE
. DDS_Boolean RTI_RoutingServiceInput_take | ( | RTI_RoutingServiceInput * | self, |
struct RTI_RoutingServiceLoanedSamples * | loaned_samples | ||
) |
Takes all the available samples in this Input into the specified loaned samples instance.
This operation will call take()
on the underlying RTI_RoutingServiceStreamReader, and the samples will be loaned into the given loaned samples collection. Samples loaned have to be returned by calling RTI_RoutingServiceInput_return_loan().
self | In. Input to take the samples from. Cannot be null. |
loaned_samples | Out. Samples taken will be stored here. Cannot be null. |
DDS_BOOLEAN_FALSE
if the samples could not be taken, DDS_BOOLEAN_TRUE
otherwise.DDS_Boolean RTI_RoutingServiceInput_take_w_selector | ( | RTI_RoutingServiceInput * | self, |
struct RTI_RoutingServiceLoanedSamples * | loaned_samples, | ||
const struct RTI_RoutingServiceSelectorState * | selector | ||
) |
Takes all the available samples in this Input into the specified loaned samples instance, filtering samples based on the given data selector.
This operation will call take()
on the underlying RTI_RoutingServiceStreamReader, and the samples will be loaned into the given loaned samples collection. Samples loaned have to be returned by calling RTI_RoutingServiceInput_return_loan().
self | In. Input to take the samples from. |
loaned_samples | Out. Samples taken will be stored here. |
selector | In. Selection criteria for the samples to be taken. |
DDS_BOOLEAN_FALSE
if the samples could not be taken, DDS_BOOLEAN_TRUE
otherwise.DDS_Boolean RTI_RoutingServiceInput_read | ( | RTI_RoutingServiceInput * | self, |
struct RTI_RoutingServiceLoanedSamples * | loaned_samples | ||
) |
Reads all the available samples in this Input into the specified loaned samples instance.
This operation will call read()
on the underlying RTI_RoutingServiceStreamReader, and the samples will be loaned into the given loaned samples collection. Samples loaned have to be returned by calling RTI_RoutingServiceInput_return_loan().
self | In. Input to read the samples from. |
loaned_samples | Out. Samples read will be stored here. |
DDS_BOOLEAN_FALSE
) if the samples could not be read, DDS_BOOLEAN_TRUE
otherwise. DDS_Boolean RTI_RoutingServiceInput_read_w_selector | ( | RTI_RoutingServiceInput * | self, |
struct RTI_RoutingServiceLoanedSamples * | loaned_samples, | ||
const struct RTI_RoutingServiceSelectorState * | selector | ||
) |
Reads all the available samples in this Input into the specified loaned samples instance, filtering samples based on the given data selector. Cannot be null.
This operation will call read()
on the underlying RTI_RoutingServiceStreamReader, and the samples will be loaned into the given loaned samples collection. Samples loaned have to be returned by calling RTI_RoutingServiceInput_return_loan().
self | In. Input to read the samples from. Cannot be null. |
loaned_samples | Out. Samples taken will be stored here. Cannot be null. |
selector | In. Selection criteria for the samples to be taken. |
DDS_BOOLEAN_FALSE
if the samples could not be read, DDS_BOOLEAN_TRUE
otherwise.DDS_Boolean RTI_RoutingServiceInput_return_loan | ( | RTI_RoutingServiceInput * | self, |
struct RTI_RoutingServiceLoanedSamples * | loaned_samples | ||
) |
Returns a loan on the read or taken samples.
Call this method to indicate that you're done accessing the collection of samples obtained by an earlier invocation of RTI_RoutingServiceInput_take(), RTI_RoutingServiceInput_take_w_selector(), RTI_RoutingServiceInput_read() or RTI_RoutingServiceInput_read_w_selector().
self | In. Input the samples were taken/read from. Cannot be null. |
loaned_samples | Inout. The loaned samples to be returned. Cannot be null. |
DDS_BOOLEAN_FALSE
if the samples could not be returned successfully, DDS_BOOLEAN_TRUE
otherwise.RTI_RoutingServiceSelectorStateQueryData RTI_RoutingServiceInput_create_content_query | ( | RTI_RoutingServiceInput * | self, |
RTI_RoutingServiceSelectorStateQueryData | old_query_data, | ||
const struct RTI_RoutingServiceSelectorContent * | content | ||
) |
Creates a query object that selects the data with the specified filter.
This operation allows reading data with a SelectorState that contains a query object returned by this operation.
A query object type is implementation-dependent and guaranteed to to be used only within the same StreamReader that created it. Because a query object may be an expensive resource, this operation allows receiving a previously created query for a potential reuse and update of its filter.
self | In. Input used to create the content query. Cannot be null. |
old_query_data | Inout. A previously created query object that is provided for potential reuse and update of its filter. |
content | In. The filter to be applied. Cannot be null. |
DDS_Boolean RTI_RoutingServiceInput_delete_content_query | ( | RTI_RoutingServiceInput * | self, |
RTI_RoutingServiceSelectorStateQueryData | query_data | ||
) |
Deletes a content query created from this Input.
self | In. Input used to create the content query. Cannot be null. |
query_data | In. The query object to be deleted. Cannot be null. |
DDS_BOOLEAN_FALSE
if the operation fails, DDS_BOOLEAN_TRUE
otherwise. const char * RTI_RoutingServiceOutput_get_name | ( | RTI_RoutingServiceOutput * | self | ) |
Returns the name of the specified output.
The output name is given by the attribute of the corresponding XML tag in the configuration.
self | In. Output for which the name is required. |
const struct RTI_RoutingServiceStreamInfo * RTI_RoutingServiceOutput_get_stream_info | ( | RTI_RoutingServiceOutput * | self | ) |
Returns the type information associated with the specified Output. The type information refers to the format of the stream that this Output's write operation expects to receive from the processor of the route.
The TypeInformation may be the one coming from the Transformation if this Output has one. In this case, the type information is the one corresponding to the Output side of the Transformation.
self | In. Output for which the type information is required. Cannot be null. |
DDS_Boolean RTI_RoutingServiceOutput_write | ( | RTI_RoutingServiceOutput * | self, |
const RTI_RoutingServiceSample * | sample_array, | ||
const RTI_RoutingServiceSampleInfo * | sample_info_array, | ||
int * | array_length | ||
) |
Writes a list of data and information samples.
self | In. The Output where to write the samples. Cannot be null. |
sample_array | In. Array of samples to write. Cannot be null. |
sample_info_array | In. Array of information samples to write. |
array_length | Inout. The length of the sample and info arrays. Output is the number of samples written. Cannot be null. |
DDS_BOOLEAN_FALSE
if the write operation was not successful. DDS_BOOLEAN_TRUE
otherwise. DDS_Boolean RTI_RoutingServiceOutput_write_sample | ( | RTI_RoutingServiceOutput * | self, |
const RTI_RoutingServiceSample | data, | ||
const RTI_RoutingServiceSampleInfo | info | ||
) |
Writes a single sample, optionally with metatada indicated by an info sample.
self | In. The Output where to write the samples. Cannot be null. |
data | In. Data sample to be written. Cannot be null. |
info | In. Associated information sample. |
DDS_BOOLEAN_FALSE
if the sample could not be written, DDS_BOOLEAN_TRUE
otherwise. int RTI_RoutingServiceRoute_get_input_count | ( | RTI_RoutingServiceRoute * | self | ) |
Returns the number of inputs associated with this Route.
DDS_Boolean RTI_RoutingServiceRoute_is_input_enabled | ( | RTI_RoutingServiceRoute * | self, |
int | index | ||
) |
Checks whether the Input with the specified index is enabled.
Note: This function will return DDS_BOOLEAN_FALSE
both when all the parameters are correct and the input is disabled, or when any of the parameters are incorrect. It's the responsibility of the caller to ensure the parameters are valid, so that the returned value is, too.
self | In. The Route for which to check the Input status. Cannot be null. |
index | In. The index, starting at 0, of the Input for which the status is required. |
RTI_RoutingServiceInput * RTI_RoutingServiceRoute_get_input_at | ( | RTI_RoutingServiceRoute * | self, |
int | index | ||
) |
Returns the Input at the specified index.
Inputs are ordered according to the order of input declarations in the XML configuration. Then indexes are assigned increasingly starting at zero from the first declaration.
NULL
if the Input is not enabled or the index is out of bounds. RTI_RoutingServiceInput * RTI_RoutingServiceRoute_lookup_input_by_name | ( | RTI_RoutingServiceRoute * | self, |
const char * | input_name | ||
) |
Looks up the specified Input by its configuration name.
The Input configuration name is the value of the name attribute specified within the <input> tag in the XML configuration.
NOTE: The condition that the input must be enabled will be removed in a future version. This is being tracked with issue ID ROUTING-1131.
self | In. The Route for which to obtain the Input. Cannot be null. |
input_name | In. Name of the input configuration. Cannot be null. |
int RTI_RoutingServiceRoute_get_output_count | ( | RTI_RoutingServiceRoute * | self | ) |
Returns the number of outputs associated with this Route.
DDS_Boolean RTI_RoutingServiceRoute_is_output_enabled | ( | RTI_RoutingServiceRoute * | self, |
int | index | ||
) |
Checks whether the Output at the specified index is enabled.
Note: This function will return DDS_BOOLEAN_FALSE
both when all the parameters are correct and the output is disabled, or when any of the parameters are incorrect. It's the responsibility of the caller to ensure the parameters are valid, so that the returned value is, too.
self | In. The Route for which to check the Output status. Cannot be null. |
index | In. The index, starting at 0, of the Output for which the status is required. |
RTI_RoutingServiceOutput * RTI_RoutingServiceRoute_get_output_at | ( | RTI_RoutingServiceRoute * | self, |
int | index | ||
) |
Returns the Output at the specified index.
Outputs are ordered according to the order of output declarations in the XML configuration. Then indexes are assigned increasingly starting at zero from the first declaration.
NULL
if the Output is not enabled or the index is out of bounds. RTI_RoutingServiceOutput * RTI_RoutingServiceRoute_lookup_output_by_name | ( | RTI_RoutingServiceRoute * | self, |
const char * | output_name | ||
) |
Looks up the specified Output by its configuration name.
The Output configuration name is the value of the name attribute specified within the <output> tag in the XML configuration.
NOTE: The condition that the input must be enabled will be removed in a future version. This is being tracked with issue ID ROUTING-1131.
self | In. The Route for which to obtain the Output. Cannot be null. |
output_name | In. Name of the output configuration. Cannot be null. |
void RTI_RoutingServiceRoute_wakeup_route | ( | RTI_RoutingServiceRoute * | route | ) |
Sends a wakeup event to the specified Route. This operation can be safely called from any thread context.
void RTI_RoutingServiceRoute_get_period | ( | RTI_RoutingServiceRoute * | self, |
struct DDS_Duration_t * | period | ||
) |
Get the current period of the periodic event for this Route.
self | In. The Route for which to obtain the period. Cannot be null. |
period | Out. The current periodic event period. |
void RTI_RoutingServiceRoute_set_period | ( | RTI_RoutingServiceRoute * | self, |
const struct DDS_Duration_t * | period | ||
) |
Changes the periodic event period for this route.
This operation can be called many times within the same periodic event, in which only the last call will make effect.
The operation has no effect if the periodic event is not enabled in the route.
self | In. The Route for which to set the period. Cannot be null. |
period | In. New session period for periodic events. |
RTI_RoutingServiceInput * RTI_RoutingServiceRoute_get_first_input | ( | RTI_RoutingServiceRoute * | self | ) |
Returns the first enabled Input in this route.
This function, along with RTI_RoutingServiceRoute_get_next_input(), provides iterator-based capabilities to iterate through a Route's enabled Inputs.
RTI_RoutingServiceInput * RTI_RoutingServiceRoute_get_next_input | ( | RTI_RoutingServiceRoute * | self, |
RTI_RoutingServiceInput * | prev_input | ||
) |
Returns the next enabled Input sibling to the specified input.
This function, along with RTI_RoutingServiceRoute_get_first_input(), provides iterator-based capabilities to iterate through a Route's enabled Inputs.
RTI_RoutingServiceOutput * RTI_RoutingServiceRoute_get_first_output | ( | RTI_RoutingServiceRoute * | self | ) |
Returns the first enabled output in this route.
This function, along with RTI_RoutingServiceRoute_get_next_output(), provides iterator-based capabilities to iterate through a Route's enabled Outputs.
RTI_RoutingServiceOutput * RTI_RoutingServiceRoute_get_next_output | ( | RTI_RoutingServiceRoute * | self, |
RTI_RoutingServiceOutput * | prev_output | ||
) |
Returns the next enabled Output sibling to the specified output.
This function, along with RTI_RoutingServiceRoute_get_first_output(), provides iterator-based capabilities to iterate through a Route's enabled Outputs.
const char * RTI_RoutingServiceRoute_get_full_name | ( | RTI_RoutingServiceRoute * | self | ) |
Returns the fully-qualified name of this Route, derived from the XML configuration.
RTI_RoutingServiceRouteEventKind RTI_RoutingServiceRouteEvent_get_kind | ( | RTI_RoutingServiceRouteEvent * | self | ) |
Returns the kind of this RouteEvent.
RTI_ROUTING_SERVICE_ROUTE_EVENT_NONE
if the parameter passed is null
. RTI_RoutingServiceRoute * RTI_RoutingServiceRouteEvent_get_route | ( | RTI_RoutingServiceRouteEvent * | self | ) |
Returns the Route that triggered the event.
NULL
if the parameter passed is null. void * RTI_RoutingServiceRouteEvent_get_event_data | ( | RTI_RoutingServiceRouteEvent * | self | ) |
Returns the data associated with the event.
The event data depends on the kind of events. See documentation of individual events for the type of event data they provide.
NULL
if the parameter passed is null. void * RTI_RoutingServiceRouteEvent_get_affected_entity | ( | RTI_RoutingServiceRouteEvent * | self | ) |
Returns the entity that is directly affected by the event.
Each kind of event can be affected by different types of entities. See documentation of individual events for the type of affected entity.
NULL
if the parameter passed is null.