|
typedef struct DDS_DataReaderImpl | DDS_DataReader |
| <<interface>> <<cert>> Allows the application to: (1) declare the data it wishes to receive (i.e. make a subscription) and (2) access the data received by the attached DDS_Subscriber. More...
|
|
typedef struct DDS_SubscriberImpl | DDS_Subscriber |
| <<interface>> A subscriber is the object responsible for actually receiving data from a subscription. More...
|
|
typedef DDS_UnsignedLong | DDS_SampleStateMask |
| A bit-mask (list) of sample states, i.e. DDS_SampleStateKind. More...
|
|
typedef DDS_UnsignedLong | DDS_ViewStateMask |
| A bit-mask (list) of view states, i.e. DDS_ViewStateKind. More...
|
|
typedef DDS_UnsignedLong | DDS_InstanceStateMask |
| A bit-mask (list) of instance states, i.e. DDS_InstanceStateKind. More...
|
|
typedef void(* | DDS_DataReaderListener_RequestedDeadlineMissedCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_RequestedDeadlineMissedStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener requested_deadline_missed function. More...
|
|
typedef void(* | DDS_DataReaderListener_LivelinessChangedCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_LivelinessChangedStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener liveliness_changed function. More...
|
|
typedef void(* | DDS_DataReaderListener_RequestedIncompatibleQosCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_RequestedIncompatibleQosStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener requested_incompatible_QoS function. More...
|
|
typedef void(* | DDS_DataReaderListener_SampleRejectedCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_SampleRejectedStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener sample_rejected function. More...
|
|
typedef void(* | DDS_DataReaderListener_DataAvailableCallback )(void *listener_data, DDS_DataReader *reader) |
| <<cert>> Prototype of a DDS_DataReaderListener data_available function. More...
|
|
typedef void(* | DDS_DataReaderListener_SubscriptionMatchedCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_SubscriptionMatchedStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener subscription_match function. More...
|
|
typedef void(* | DDS_DataReaderListener_SampleLostCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_SampleLostStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener subscription_lost function. More...
|
|
typedef void(* | DDS_DataReaderListener_InstanceReplacedCallback )(void *listener_data, DDS_DataReader *reader, const struct DDS_DataReaderInstanceReplacedStatus *status) |
| <<cert>> Prototype of a DDS_DataReaderListener instance_replaced function. More...
|
|
typedef DDS_Boolean(* | DDS_DataReaderListener_BeforeSampleDeserializeCallback )(void *listener_data, DDS_DataReader *reader, struct NDDS_Type_Plugin *plugin, struct CDR_Stream_t *stream, DDS_Boolean *dropped) |
| <<cert>> Prototype of a DDS_DataReaderListener before_sample_deserialize function. More...
|
|
typedef DDS_Boolean(* | DDS_DataReaderListener_BeforeSampleCommitCallback )(void *listener_data, DDS_DataReader *reader, const void *const sample, DDS_Boolean *dropped) |
| <<cert>> Prototype of a DDS_DataReaderListener before_sample_commit function. More...
|
|
typedef void(* | DDS_SubscriberListener_DataOnReadersCallback )(void *listener_data, DDS_Subscriber *sub) |
| Prototype of a DDS_SubscriberListener data_on_readers function. More...
|
|
|
DDS_ReturnCode_t | DDS_DataReaderQos_initialize (struct DDS_DataReaderQos *self) |
| Initializer for new QoS instances. More...
|
|
DDS_ReturnCode_t | DDS_DataReaderQos_copy (struct DDS_DataReaderQos *self, const struct DDS_DataReaderQos *source) |
| Copy the contents of the given QoS into this QoS. More...
|
|
DDS_ReturnCode_t | DDS_DataReaderQos_finalize (struct DDS_DataReaderQos *self) |
| Free any dynamic memory allocated by the policies in this DDS_DataReaderQos. More...
|
|
DDS_ReturnCode_t | DDS_SubscriberQos_initialize (struct DDS_SubscriberQos *self) |
| Initializer for new QoS instances. More...
|
|
DDS_ReturnCode_t | DDS_SubscriberQos_copy (struct DDS_SubscriberQos *self, const struct DDS_SubscriberQos *source) |
| Copy the contents of the given QoS into this QoS. More...
|
|
DDS_ReturnCode_t | DDS_SubscriberQos_finalize (struct DDS_SubscriberQos *self) |
| Free any dynamic memory allocated by the policies in this DDS_SubscriberQos. More...
|
|
DDS_Entity * | DDS_Subscriber_as_entity (DDS_Subscriber *subscriber) |
| <<cert>> Access a DDS_Subscriber's supertype instance. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_get_default_datareader_qos (DDS_Subscriber *self, struct DDS_DataReaderQos *qos) |
| Copies the default DDS_DataReaderQos values into the provided DDS_DataReaderQos instance. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_set_default_datareader_qos (DDS_Subscriber *self, const struct DDS_DataReaderQos *qos) |
| Sets the default DDS_DataReaderQos values for this subscriber. More...
|
|
DDS_DataReader * | DDS_Subscriber_create_datareader (DDS_Subscriber *self, DDS_TopicDescription *topic, const struct DDS_DataReaderQos *qos, const struct DDS_DataReaderListener *listener, DDS_StatusMask mask) |
| <<cert>> Creates a DDS_DataReader that will be attached and belong to the DDS_Subscriber. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_delete_datareader (DDS_Subscriber *self, DDS_DataReader *a_datareader) |
| Deletes a DDS_DataReader that belongs to the DDS_Subscriber. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_enable (DDS_Entity *self) |
| Enables a DDS_Subscriber instance. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_delete_contained_entities (DDS_Subscriber *self) |
| Deletes all the entities that were created by means of the "create" operation on the DDS_Subscriber. More...
|
|
DDS_DataReader * | DDS_Subscriber_lookup_datareader (DDS_Subscriber *self, const char *topic_name) |
| <<cert>> Retrieves an existing DDS_DataReader. More...
|
|
DDS_DomainParticipant * | DDS_Subscriber_get_participant (DDS_Subscriber *self) |
| <<cert>> Returns the DDS_DomainParticipant to which the DDS_Subscriber belongs. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_set_qos (DDS_Subscriber *self, const struct DDS_SubscriberQos *qos) |
| Sets the subscriber QoS. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_get_qos (DDS_Subscriber *self, struct DDS_SubscriberQos *qos) |
| Gets the subscriber QoS. More...
|
|
DDS_ReturnCode_t | DDS_Subscriber_set_listener (DDS_Subscriber *self, const struct DDS_SubscriberListener *l, DDS_StatusMask mask) |
| Sets the subscriber listener. More...
|
|
struct DDS_SubscriberListener | DDS_Subscriber_get_listener (DDS_Subscriber *self) |
| Get the subscriber listener. More...
|
|
DDS_Entity * | DDS_DataReader_as_entity (DDS_DataReader *dataReader) |
| <<cert>> Accesses the DDS_DataReader's supertype instance. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_enable (DDS_Entity *self) |
| Enables a DDS_DataReader instance. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_matched_publications (DDS_DataReader *self, struct DDS_InstanceHandleSeq *publication_handles) |
| Retrieve the list of publications currently "associated" with this DDS_DataReader. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_matched_publication_data (DDS_DataReader *self, struct DDS_PublicationBuiltinTopicData *publication_data, const DDS_InstanceHandle_t *publication_handle) |
| This operation retrieves the information on a publication that is currently "associated" with the DDS_DataReader. More...
|
|
DDS_TopicDescription * | DDS_DataReader_get_topicdescription (DDS_DataReader *self) |
| <<cert>> Returns the DDS_TopicDescription associated with the DDS_DataReader. More...
|
|
DDS_Subscriber * | DDS_DataReader_get_subscriber (DDS_DataReader *self) |
| <<cert>> Returns the DDS_Subscriber to which the DDS_DataReader belongs. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_sample_rejected_status (DDS_DataReader *self, struct DDS_SampleRejectedStatus *status) |
| <<cert>> Accesses the DDS_SAMPLE_REJECTED_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_liveliness_changed_status (DDS_DataReader *self, struct DDS_LivelinessChangedStatus *status) |
| <<cert>> Accesses the DDS_LIVELINESS_CHANGED_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_requested_deadline_missed_status (DDS_DataReader *self, struct DDS_RequestedDeadlineMissedStatus *status) |
| <<cert>> Accesses the DDS_REQUESTED_DEADLINE_MISSED_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_requested_incompatible_qos_status (DDS_DataReader *self, struct DDS_RequestedIncompatibleQosStatus *status) |
| <<cert>> Accesses the DDS_REQUESTED_INCOMPATIBLE_QOS_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_subscription_matched_status (DDS_DataReader *self, struct DDS_SubscriptionMatchedStatus *status) |
| <<cert>> Accesses the DDS_SUBSCRIPTION_MATCHED_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_sample_lost_status (DDS_DataReader *self, struct DDS_SampleLostStatus *status) |
| <<cert>> Accesses the DDS_SAMPLE_LOST_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_instance_replaced_status (DDS_DataReader *self, struct DDS_DataReaderInstanceReplacedStatus *status) |
| <<cert>> Accesses the DDS_INSTANCE_REPLACED_STATUS communication status. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_set_qos (DDS_DataReader *self, const struct DDS_DataReaderQos *qos) |
| Sets the reader QoS. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_get_qos (DDS_DataReader *self, struct DDS_DataReaderQos *qos) |
| Gets the reader QoS. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_set_listener (DDS_DataReader *self, const struct DDS_DataReaderListener *l, DDS_StatusMask mask) |
| Sets the reader listener. More...
|
|
struct DDS_DataReaderListener | DDS_DataReader_get_listener (DDS_DataReader *self) |
| Get the reader listener. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_read (DDS_DataReader *self, struct DDS_UntypedSampleSeq *received_data, struct DDS_SampleInfoSeq *info_seq, DDS_Long max_samples, DDS_SampleStateMask sample_states, DDS_ViewStateMask view_states, DDS_InstanceStateMask instance_states) |
| <<cert>> Access a collection of data samples from the DDS_DataReader. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_take (DDS_DataReader *self, struct DDS_UntypedSampleSeq *received_data, struct DDS_SampleInfoSeq *info_seq, DDS_Long max_samples, DDS_SampleStateMask sample_states, DDS_ViewStateMask view_states, DDS_InstanceStateMask instance_states) |
| <<cert>> Access a collection of data-samples from the DDS_DataReader. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_read_next_sample (DDS_DataReader *self, void *received_data, struct DDS_SampleInfo *sample_info) |
| <<cert>> Copies the next not-previously-accessed data value from the DDS_DataReader. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_take_next_sample (DDS_DataReader *self, void *received_data, struct DDS_SampleInfo *sample_info) |
| <<cert>> Copies the next not-previously-accessed data value from the DDS_DataReader. More...
|
|
DDS_ReturnCode_t | DDS_DataReader_read_instance (DDS_DataReader *self, struct DDS_UntypedSampleSeq *received_data, struct DDS_SampleInfoSeq *info_seq, DDS_Long max_samples, const DDS_InstanceHandle_t *a_handle, DDS_SampleStateMask sample_states, DDS_ViewStateMask view_states, DDS_InstanceStateMask instance_states) |
| <<cert>> Access a collection of data samples from the DDS_DataReader, all of which belong to the same instance . More...
|
|
DDS_ReturnCode_t | DDS_DataReader_take_instance (DDS_DataReader *self, struct DDS_UntypedSampleSeq *received_data, struct DDS_SampleInfoSeq *info_seq, DDS_Long max_samples, const DDS_InstanceHandle_t *a_handle, DDS_SampleStateMask sample_states, DDS_ViewStateMask view_states, DDS_InstanceStateMask instance_states) |
| <<cert>> Access a collection of data samples from the DDS_DataReader, all of which belong to the same instance . More...
|
|
DDS_ReturnCode_t | DDS_DataReader_return_loan (DDS_DataReader *self, struct DDS_UntypedSampleSeq *received_data, struct DDS_SampleInfoSeq *info_seq) |
| <<cert>> Indicates to the DDS_DataReader that the application is done accessing the collection of received_data and info_seq obtained by some earlier invocation of read or take on the DDS_DataReader. More...
|
|
DDS_InstanceHandle_t | DDS_DataReader_lookup_instance (DDS_DataReader *self, const void *key_holder) |
| <<cert>> Retrieve the DDS_InstanceHandle_t identifying a specific instance. More...
|
|