FooDataReader Class Reference
[DataReaders]

<<interface>> <<generic>> User data type-specific data reader. More...

Inheritance diagram for FooDataReader:

DataReader DomainEntity Entity

List of all members.

Public Member Functions

void read (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, int sample_states, int view_states, int instance_states)
 Access a collection of data samples from the com.rti.dds.subscription.DataReader.
void take (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, int sample_states, int view_states, int instance_states)
 Access a collection of data-samples from the com.rti.dds.subscription.DataReader.
void read_w_condition (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, ReadCondition condition)
 Accesses via com.rti.dds.topic.example.FooDataReader.read the samples that match the criteria specified in the com.rti.dds.subscription.ReadCondition.
void take_w_condition (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, ReadCondition condition)
 Analogous to com.rti.dds.topic.example.FooDataReader.read_w_condition except it accesses samples via the com.rti.dds.topic.example.FooDataReader.take operation.
void read_next_sample (Foo received_data, SampleInfo sample_info)
 Copies the next not-previously-accessed data value from the com.rti.dds.subscription.DataReader.
void take_next_sample (Foo received_data, SampleInfo sample_info)
 Copies the next not-previously-accessed data value from the com.rti.dds.subscription.DataReader.
void read_instance (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, InstanceHandle_t a_handle, int sample_states, int view_states, int instance_states)
 Access a collection of data samples from the com.rti.dds.subscription.DataReader.
void take_instance (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, InstanceHandle_t a_handle, int sample_states, int view_states, int instance_states)
 Access a collection of data samples from the com.rti.dds.subscription.DataReader.
void read_next_instance (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, InstanceHandle_t previous_handle, int sample_states, int view_states, int instance_states)
 Access a collection of data samples from the com.rti.dds.subscription.DataReader.
void take_next_instance (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, InstanceHandle_t previous_handle, int sample_states, int view_states, int instance_states)
 Access a collection of data samples from the com.rti.dds.subscription.DataReader.
void read_next_instance_w_condition (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, InstanceHandle_t previous_handle, ReadCondition condition)
 Accesses via com.rti.dds.topic.example.FooDataReader.read_next_instance the samples that match the criteria specified in the com.rti.dds.subscription.ReadCondition.
void take_next_instance_w_condition (FooSeq received_data, SampleInfoSeq info_seq, int max_samples, InstanceHandle_t previous_handle, ReadCondition condition)
 Accesses via com.rti.dds.topic.example.FooDataReader.take_next_instance the samples that match the criteria specified in the com.rti.dds.subscription.ReadCondition.
void return_loan (FooSeq received_data, SampleInfoSeq info_seq)
 Indicates to the com.rti.dds.subscription.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 com.rti.dds.subscription.DataReader.
void get_key_value (Foo key_holder, InstanceHandle_t handle)
 Retrieve the instance key that corresponds to an instance handle.
InstanceHandle_t lookup_instance (Foo key_holder)
 Retrieves the instance handle that corresponds to an instance key_holder.


Detailed Description

<<interface>> <<generic>> User data type-specific data reader.

Defines the user data type specific reader interface generated for each application class.

The concrete user data type reader automatically generated by the implementation is an incarnation of this class.

See also:
com.rti.dds.subscription.DataReader

Foo

com.rti.dds.topic.example.FooDataWriter

rtiddsgen


Member Function Documentation

void read ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
int  sample_states,
int  view_states,
int  instance_states 
)

Access a collection of data samples from the com.rti.dds.subscription.DataReader.

This operation offers the same functionality and API as com.rti.dds.topic.example.FooDataReader.take except that the samples returned remain in the com.rti.dds.subscription.DataReader such that they can be retrieved again by means of a read or take operation.

Please refer to the documentation of com.rti.dds.topic.example.FooDataReader.take() for details on the number of samples returned within the received_data and info_seq as well as the order in which the samples appear in these sequences.

The act of reading a sample changes its sample_state to SampleStateKind.READ_SAMPLE_STATE. If the sample belongs to the most recent generation of the instance, it will also set the view_state of the instance to be ViewStateKind.NOT_NEW_VIEW_STATE. It will not affect the instance_state of the instance.

Important: If the samples "returned" by this method are loaned from RTI Connext (see com.rti.dds.topic.example.FooDataReader.take for more information on memory loaning), it is important that their contents not be changed. Because the memory in which the data is stored belongs to the middleware, any modifications made to the data will be seen the next time the same samples are read or taken; the samples will no longer reflect the state that was received from the network.

Parameters:
received_data <<inout>> User data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> A com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
sample_states <<in>> Data samples matching one of these sample_states are returned.
view_states <<in>> Data samples matching one of these view_state are returned.
instance_states <<in>> Data samples matching ones of these instance_state are returned.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read_w_condition, com.rti.dds.topic.example.FooDataReader.take, com.rti.dds.topic.example.FooDataReader.take_w_condition

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void take ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
int  sample_states,
int  view_states,
int  instance_states 
)

Access a collection of data-samples from the com.rti.dds.subscription.DataReader.

The operation will return the list of samples received by the com.rti.dds.subscription.DataReader since the last com.rti.dds.topic.example.FooDataReader.take operation that match the specified com.rti.dds.subscription.SampleStateMask, com.rti.dds.subscription.ViewStateMask and com.rti.dds.subscription.InstanceStateMask.

This operation may fail with RETCODE_ERROR if com.rti.dds.infrastructure.DataReaderResourceLimitsQosPolicy.max_outstanding_reads limit has been exceeded.

The actual number of samples returned depends on the information that has been received by the middleware as well as the com.rti.dds.infrastructure.HistoryQosPolicy, com.rti.dds.infrastructure.ResourceLimitsQosPolicy, com.rti.dds.infrastructure.DataReaderResourceLimitsQosPolicy and the characteristics of the data-type that is associated with the com.rti.dds.subscription.DataReader:

If the read or take succeeds and the number of samples returned has been limited (by means of a maximum limit, as listed above, or insufficient com.rti.dds.subscription.SampleInfo resources), the call will complete successfully and provide those samples the reader is able to return. The user may need to make additional calls, or return outstanding loaned buffers in the case of insuffificient resources, in order to access remaining samples.

Note that in the case where the com.rti.dds.topic.Topic associated with the com.rti.dds.subscription.DataReader is bound to a data-type that has no key definition, then there will be at most one instance in the com.rti.dds.subscription.DataReader. So the per-sample limits will apply.

The act of taking a sample removes it from RTI Connext so it cannot be read or taken again. If the sample belongs to the most recent generation of the instance, it will also set the view_state of the sample's instance to ViewStateKind.NOT_NEW_VIEW_STATE. It will not affect the instance_state of the sample's instance.

After com.rti.dds.topic.example.FooDataReader.take completes, received_data and info_seq will be of the same length and contain the received data.

If the sequences are empty (maximum size equals 0) when the com.rti.dds.topic.example.FooDataReader.take is called, the samples returned in the received_data and the corresponding info_seq are 'loaned' to the application from buffers provided by the com.rti.dds.subscription.DataReader. The application can use them as desired and has guaranteed exclusive access to them.

Once the application completes its use of the samples it must 'return the loan' to the com.rti.dds.subscription.DataReader by calling the com.rti.dds.topic.example.FooDataReader.return_loan operation.

Important: When you loan data from the middleware, you must not keep any pointers to any part of the data samples or the com.rti.dds.subscription.SampleInfo objects after the call to com.rti.dds.topic.example.FooDataReader.return_loan. Returning the loan places the objects back into a pool, allowing the middleware to overwrite them with new data.

Note: While you must call com.rti.dds.topic.example.FooDataReader.return_loan at some point, you do not have to do so before the next com.rti.dds.topic.example.FooDataReader.take call. However, failure to return the loan will eventually deplete the com.rti.dds.subscription.DataReader of the buffers it needs to receive new samples and eventually samples will start to be lost. The total number of buffers available to the com.rti.dds.subscription.DataReader is specified by the com.rti.dds.infrastructure.ResourceLimitsQosPolicy and the com.rti.dds.infrastructure.DataReaderResourceLimitsQosPolicy.

If the sequences are not empty (maximum size not equal to 0 and length not equal to 0) when com.rti.dds.topic.example.FooDataReader.take is called, samples are copied to received_data and info_seq. The application will not need to call com.rti.dds.topic.example.FooDataReader.return_loan.

The order of the samples returned to the caller depends on the com.rti.dds.infrastructure.PresentationQosPolicy.

In any case, the relative order between the samples of one instance is consistent with the DESTINATION_ORDER policy:

  • If com.rti.dds.infrastructure.DestinationOrderQosPolicy.kind is DestinationOrderQosPolicyKind.BY_RECEPTION_TIMESTAMP_DESTINATIONORDER_QOS, samples belonging to the same instances will appear in the relative order in which there were received (FIFO, earlier samples ahead of the later samples).
  • If com.rti.dds.infrastructure.DestinationOrderQosPolicy.kind is DestinationOrderQosPolicyKind.BY_SOURCE_TIMESTAMP_DESTINATIONORDER_QOS, samples belonging to the same instances will appear in the relative order implied by the source_timestamp (FIFO, smaller values of source_timestamp ahead of the larger values).
If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

In addition to the collection of samples, the read and take operations also use a collection of com.rti.dds.subscription.SampleInfo structures.

SEQUENCES USAGE IN TAKE AND READ

The initial (input) properties of the received_data and info_seq collections will determine the precise behavior of the read or take operation. For the purposes of this description, the collections are modeled as having these properties:
  • the current-length (len, see Sequence.size())
  • the maximum length (max_len, see Sequence.getMaximum)
The initial values of the len and max_len properties for the received_data and info_seq collections govern the behavior of the read and take operations as specified by the following rules:

  1. The values of len and max_len properties for the two collections must be identical. Otherwise read/take will fail with RETCODE_PRECONDITION_NOT_MET.

  2. On successful output, the values of len and max_len will be the same for both collections.

  3. If the initial max_len==0, then the received_data and info_seq collections will be filled with elements that are loaned by the com.rti.dds.subscription.DataReader. On output, len will be set to the number of values returned, and max_len will be set to a value verifying max_len >= len. The use of this variant allows for zero-copy access to the data and the application will need to return the loan to the com.rti.dds.publication.DataWriter using com.rti.dds.topic.example.FooDataReader.return_loan.

  4. If the initial max_len>0 then the read or take operation will fail with RETCODE_PRECONDITION_NOT_MET. This avoids the potential hard-to-detect memory leaks caused by an application forgetting to return the loan.

  5. If initial max_len>0 then the read or take operation will copy the received_data values and com.rti.dds.subscription.SampleInfo values into the elements already inside the collections. On output, len will be set to the number of values copied and max_len will remain unchanged. The use of this variant forces a copy but the application can control where the copy is placed and the application will not need to return the loan. The number of samples copied depends on the relative values of max_len and max_samples:

    • If max_samples == LENGTH_UNLIMITED, then at most max_len values will be copied. The use of this variant lets the application limit the number of samples returned to what the sequence can accommodate.

    • If max_samples <= max_len, then at most max_samples values will be copied. The use of this variant lets the application limit the number of samples returned to fewer that what the sequence can accommodate.

    • If max_samples > max_len, then the read or take operation will fail with RETCODE_PRECONDITION_NOT_MET. This avoids the potential confusion where the application expects to be able to access up to max_samples, but that number can never be returned, even if they are available in the com.rti.dds.subscription.DataReader, because the output sequence cannot accommodate them.

As described above, upon completion, the received_data and info_seq collections may contain elements loaned from the com.rti.dds.subscription.DataReader. If this is the case, the application will need to use com.rti.dds.topic.example.FooDataReader.return_loan to return the loan once it is no longer using the received_data in the collection. When com.rti.dds.topic.example.FooDataReader.return_loan completes, the collection will have max_len=0. The application can determine whether it is necessary to return the loan or not based on how the state of the collections when the read/take operation was called However, in many cases it may be simpler to always call com.rti.dds.topic.example.FooDataReader.return_loan, as this operation is harmless (i.e., it leaves all elements unchanged) if the collection does not have a loan.

On output, the collection of Foo values and the collection of com.rti.dds.subscription.SampleInfo structures are of the same length and are in a one-to-one correspondence. Each com.rti.dds.subscription.SampleInfo provides information, such as the source_timestamp, the sample_state, view_state, and instance_state, etc., about the corresponding sample.

Some elements in the returned collection may not have valid data. If the instance_state in the com.rti.dds.subscription.SampleInfo is InstanceStateKind.NOT_ALIVE_DISPOSED_INSTANCE_STATE or InstanceStateKind.NOT_ALIVE_NO_WRITERS_INSTANCE_STATE, then the last sample for that instance in the collection (that is, the one whose com.rti.dds.subscription.SampleInfo has sample_rank==0) does not contain valid data.

Samples that contain no data do not count towards the limits imposed by the com.rti.dds.infrastructure.ResourceLimitsQosPolicy. The act of reading/taking a sample sets its sample_state to SampleStateKind.READ_SAMPLE_STATE.

If the sample belongs to the most recent generation of the instance, it will also set the view_state of the instance to ViewStateKind.NOT_NEW_VIEW_STATE. It will not affect the instance_state of the instance.

This operation must be provided on the specialized class that is generated for the particular application data-type that is being read (Foo). If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the operations fails with RETCODE_NO_DATA.

For an example on how take can be used, please refer to the receive example.

Parameters:
received_data <<inout>> User data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.

Parameters:
info_seq <<inout>> A com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described above.
sample_states <<in>> Data samples matching one of these sample_states are returned.
view_states <<in>> Data samples matching one of these view_state are returned.
instance_states <<in>> Data samples matching one of these instance_state are returned.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read

com.rti.dds.topic.example.FooDataReader.read_w_condition, com.rti.dds.topic.example.FooDataReader.take_w_condition

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void read_w_condition ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
ReadCondition  condition 
)

Accesses via com.rti.dds.topic.example.FooDataReader.read the samples that match the criteria specified in the com.rti.dds.subscription.ReadCondition.

This operation is especially useful in combination with com.rti.dds.subscription.QueryCondition to filter data samples based on the content.

The specified com.rti.dds.subscription.ReadCondition must be attached to the com.rti.dds.subscription.DataReader; otherwise the operation will fail with RETCODE_PRECONDITION_NOT_MET.

In case the com.rti.dds.subscription.ReadCondition is a plain com.rti.dds.subscription.ReadCondition and not the specialized com.rti.dds.subscription.QueryCondition, the operation is equivalent to calling com.rti.dds.topic.example.FooDataReader.read and passing as sample_states, view_states and instance_states the value of the corresponding attributes in the read_condition. Using this operation, the application can avoid repeating the same parameters specified when creating the com.rti.dds.subscription.ReadCondition.

The samples are accessed with the same semantics as com.rti.dds.topic.example.FooDataReader.read.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the operation will fail with RETCODE_NO_DATA.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
condition <<in>> the com.rti.dds.subscription.ReadCondition to select samples of interest. Cannot be NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read

com.rti.dds.topic.example.FooDataReader.take, com.rti.dds.topic.example.FooDataReader.take_w_condition

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void take_w_condition ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
ReadCondition  condition 
)

Analogous to com.rti.dds.topic.example.FooDataReader.read_w_condition except it accesses samples via the com.rti.dds.topic.example.FooDataReader.take operation.

This operation is analogous to com.rti.dds.topic.example.FooDataReader.read_w_condition except that it accesses samples via the com.rti.dds.topic.example.FooDataReader.take operation.

The specified com.rti.dds.subscription.ReadCondition must be attached to the com.rti.dds.subscription.DataReader; otherwise the operation will fail with RETCODE_PRECONDITION_NOT_MET.

The samples are accessed with the same semantics as com.rti.dds.topic.example.FooDataReader.take.

This operation is especially useful in combination with com.rti.dds.subscription.QueryCondition to filter data samples based on the content.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
condition <<in>> the com.rti.dds.subscription.ReadCondition to select samples of interest. Cannot be NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read_w_condition, com.rti.dds.topic.example.FooDataReader.read

com.rti.dds.topic.example.FooDataReader.take

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void read_next_sample ( Foo  received_data,
SampleInfo  sample_info 
)

Copies the next not-previously-accessed data value from the com.rti.dds.subscription.DataReader.

This operation copies the next not-previously-accessed data value from the com.rti.dds.subscription.DataReader. This operation also copies the corresponding com.rti.dds.subscription.SampleInfo. The implied order among the samples stored in the com.rti.dds.subscription.DataReader is the same as for the com.rti.dds.topic.example.FooDataReader.read operation.

The com.rti.dds.topic.example.FooDataReader.read_next_sample operation is semantically equivalent to the com.rti.dds.topic.example.FooDataReader.read operation, where the input data sequences has max_len=1, the sample_states=NOT_READ, the view_states=ANY_VIEW_STATE, and the instance_states=ANY_INSTANCE_STATE.

The com.rti.dds.topic.example.FooDataReader.read_next_sample operation provides a simplified API to 'read' samples, avoiding the need for the application to manage sequences and specify states.

If there is no unread data in the com.rti.dds.subscription.DataReader, the operation will fail with RETCODE_NO_DATA and nothing is copied.

Parameters:
received_data <<inout>> user data type-specific Foo object where the next received data sample will be returned. The received_data must have been fully allocated. Otherwise, this operation may fail. Must be a valid non-NULL Foo. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
sample_info <<inout>> a com.rti.dds.subscription.SampleInfo object where the next received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfo. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read

void take_next_sample ( Foo  received_data,
SampleInfo  sample_info 
)

Copies the next not-previously-accessed data value from the com.rti.dds.subscription.DataReader.

This operation copies the next not-previously-accessed data value from the com.rti.dds.subscription.DataReader and 'removes' it from the com.rti.dds.subscription.DataReader so that it is no longer accessible. This operation also copies the corresponding com.rti.dds.subscription.SampleInfo. This operation is analogous to the com.rti.dds.topic.example.FooDataReader.read_next_sample except for the fact that the sample is removed from the com.rti.dds.subscription.DataReader.

The com.rti.dds.topic.example.FooDataReader.take_next_sample operation is semantically equivalent to the com.rti.dds.topic.example.FooDataReader.take operation, where the input data sequences has max_len=1, the sample_states=NOT_READ, the view_states=ANY_VIEW_STATE, and the instance_states=ANY_INSTANCE_STATE.

The com.rti.dds.topic.example.FooDataReader.read_next_sample operation provides a simplified API to 'take' samples, avoiding the need for the application to manage sequences and specify states.

If there is no unread data in the com.rti.dds.subscription.DataReader, the operation will fail with RETCODE_NO_DATA and nothing is copied.

Parameters:
received_data <<inout>> user data type-specific Foo object where the next received data sample will be returned. The received_data must have been fully allocated. Otherwise, this operation may fail. Must be a valid non-NULL Foo. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
sample_info <<inout>> a com.rti.dds.subscription.SampleInfo object where the next received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfo. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.take

void read_instance ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
InstanceHandle_t  a_handle,
int  sample_states,
int  view_states,
int  instance_states 
)

Access a collection of data samples from the com.rti.dds.subscription.DataReader.

This operation accesses a collection of data values from the com.rti.dds.subscription.DataReader. The behavior is identical to com.rti.dds.topic.example.FooDataReader.read, except that all samples returned belong to the single specified instance whose handle is a_handle.

Upon successful completion, the data collection will contain samples all belonging to the same instance. The corresponding com.rti.dds.subscription.SampleInfo verifies com.rti.dds.subscription.SampleInfo.instance_handle == a_handle.

The com.rti.dds.topic.example.FooDataReader.read_instance operation is semantically equivalent to the com.rti.dds.topic.example.FooDataReader.read operation, except in building the collection, the com.rti.dds.subscription.DataReader will check that the sample belongs to the specified instance and otherwise it will not place the sample in the returned collection.

The behavior of the com.rti.dds.topic.example.FooDataReader.read_instance operation follows the same rules as the com.rti.dds.topic.example.FooDataReader.read operation regarding the pre-conditions and post-conditions for the received_data and sample_info. Similar to the com.rti.dds.topic.example.FooDataReader.read, the com.rti.dds.topic.example.FooDataReader.read_instance operation may 'loan' elements to the output collections, which must then be returned by means of com.rti.dds.topic.example.FooDataReader.return_loan.

Similar to the com.rti.dds.topic.example.FooDataReader.read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

This operation may fail with RETCODE_BAD_PARAMETER if the com.rti.dds.infrastructure.InstanceHandle_t a_handle does not correspond to an existing data-object known to the com.rti.dds.subscription.DataReader.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
a_handle <<in>> The specified instance to return samples for. Must be a valid non-NULL com.rti.dds.infrastructure.InstanceHandle_t. The method will fail with RETCODE_BAD_PARAMETER if it is NULL The method will fail with RETCODE_BAD_PARAMETER if the handle does not correspond to an existing data-object known to the com.rti.dds.subscription.DataReader.
sample_states <<in>> data samples matching ones of these sample_states are returned
view_states <<in>> data samples matching ones of these view_state are returned
instance_states <<in>> data samples matching ones of these instance_state are returned
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void take_instance ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
InstanceHandle_t  a_handle,
int  sample_states,
int  view_states,
int  instance_states 
)

Access a collection of data samples from the com.rti.dds.subscription.DataReader.

This operation accesses a collection of data values from the com.rti.dds.subscription.DataReader. The behavior is identical to com.rti.dds.topic.example.FooDataReader.take, except for that all samples returned belong to the single specified instance whose handle is a_handle.

The semantics are the same for the com.rti.dds.topic.example.FooDataReader.take operation, except in building the collection, the com.rti.dds.subscription.DataReader will check that the sample belongs to the specified instance, and otherwise it will not place the sample in the returned collection.

The behavior of the com.rti.dds.topic.example.FooDataReader.take_instance operation follows the same rules as the com.rti.dds.topic.example.FooDataReader.read operation regarding the pre-conditions and post-conditions for the received_data and sample_info. Similar to the com.rti.dds.topic.example.FooDataReader.read, the com.rti.dds.topic.example.FooDataReader.take_instance operation may 'loan' elements to the output collections, which must then be returned by means of com.rti.dds.topic.example.FooDataReader.return_loan.

Similar to the com.rti.dds.topic.example.FooDataReader.read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method fails with RETCODE_NO_DATA.

This operation may fail with RETCODE_BAD_PARAMETER if the com.rti.dds.infrastructure.InstanceHandle_t a_handle does not correspond to an existing data-object known to the com.rti.dds.subscription.DataReader.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
a_handle <<in>> The specified instance to return samples for. Must be a valid non-NULL com.rti.dds.infrastructure.InstanceHandle_t. The method will fail with RETCODE_BAD_PARAMETER if it is NULL. The method will fail with RETCODE_BAD_PARAMETER if the handle does not correspond to an existing data-object known to the com.rti.dds.subscription.DataReader.
sample_states <<in>> data samples matching ones of these sample_states are returned
view_states <<in>> data samples matching ones of these view_state are returned
instance_states <<in>> data samples matching ones of these instance_state are returned
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.take

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void read_next_instance ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
InstanceHandle_t  previous_handle,
int  sample_states,
int  view_states,
int  instance_states 
)

Access a collection of data samples from the com.rti.dds.subscription.DataReader.

This operation accesses a collection of data values from the com.rti.dds.subscription.DataReader where all the samples belong to a single instance. The behavior is similar to com.rti.dds.topic.example.FooDataReader.read_instance, except that the actual instance is not directly specified. Rather, the samples will all belong to the 'next' instance with instance_handle 'greater' than the specified 'previous_handle' that has available samples.

This operation implies the existence of a total order 'greater-than' relationship between the instance handles. The specifics of this relationship are not all important and are implementation specific. The important thing is that, according to the middleware, all instances are ordered relative to each other. This ordering is between the instance handles; It should not depend on the state of the instance (e.g. whether it has data or not) and must be defined even for instance handles that do not correspond to instances currently managed by the com.rti.dds.subscription.DataReader. For the purposes of the ordering, it should be 'as if' each instance handle was represented as unique integer.

The behavior of com.rti.dds.topic.example.FooDataReader.read_next_instance is 'as if' the com.rti.dds.subscription.DataReader invoked com.rti.dds.topic.example.FooDataReader.read_instance, passing the smallest instance_handle among all the ones that: (a) are greater than previous_handle, and (b) have available samples (i.e. samples that meet the constraints imposed by the specified states).

The special value InstanceHandle_t.HANDLE_NIL is guaranteed to be 'less than' any valid instance_handle. So the use of the parameter value previous_handle == InstanceHandle_t.HANDLE_NIL will return the samples for the instance which has the smallest instance_handle among all the instances that contain available samples.

The operation com.rti.dds.topic.example.FooDataReader.read_next_instance is intended to be used in an application-driven iteration, where the application starts by passing previous_handle == InstanceHandle_t.HANDLE_NIL, examines the samples returned, and then uses the instance_handle returned in the com.rti.dds.subscription.SampleInfo as the value of the previous_handle argument to the next call to com.rti.dds.topic.example.FooDataReader.read_next_instance. The iteration continues until com.rti.dds.topic.example.FooDataReader.read_next_instance fails with the value RETCODE_NO_DATA.

Note that it is possible to call the com.rti.dds.topic.example.FooDataReader.read_next_instance operation with a previous_handle that does not correspond to an instance currently managed by the com.rti.dds.subscription.DataReader. This is because as stated earlier the 'greater-than' relationship is defined even for handles not managed by the com.rti.dds.subscription.DataReader. One practical situation where this may occur is when an application is iterating though all the instances, takes all the samples of a InstanceStateKind.NOT_ALIVE_NO_WRITERS_INSTANCE_STATE instance, returns the loan (at which point the instance information may be removed, and thus the handle becomes invalid), and tries to read the next instance.

The behavior of the com.rti.dds.topic.example.FooDataReader.read_next_instance operation follows the same rules as the com.rti.dds.topic.example.FooDataReader.read operation regarding the pre-conditions and post-conditions for the received_data and sample_info. Similar to the com.rti.dds.topic.example.FooDataReader.read, the com.rti.dds.topic.example.FooDataReader.read_instance operation may 'loan' elements to the output collections, which must then be returned by means of com.rti.dds.topic.example.FooDataReader.return_loan.

Similar to the com.rti.dds.topic.example.FooDataReader.read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
previous_handle <<in>> The 'next smallest' instance with a value greater than this value that has available samples will be returned. Must be a valid non-NULL com.rti.dds.infrastructure.InstanceHandle_t. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
sample_states <<in>> data samples matching ones of these sample_states are returned
view_states <<in>> data samples matching ones of these view_state are returned
instance_states <<in>> data samples matching ones of these instance_state are returned
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void take_next_instance ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
InstanceHandle_t  previous_handle,
int  sample_states,
int  view_states,
int  instance_states 
)

Access a collection of data samples from the com.rti.dds.subscription.DataReader.

This operation accesses a collection of data values from the com.rti.dds.subscription.DataReader and 'removes' them from the com.rti.dds.subscription.DataReader.

This operation has the same behavior as com.rti.dds.topic.example.FooDataReader.read_next_instance, except that the samples are 'taken' from the com.rti.dds.subscription.DataReader such that they are no longer accessible via subsequent 'read' or 'take' operations.

Similar to the operation com.rti.dds.topic.example.FooDataReader.read_next_instance, it is possible to call com.rti.dds.topic.example.FooDataReader.take_next_instance with a previous_handle that does not correspond to an instance currently managed by the com.rti.dds.subscription.DataReader.

The behavior of the com.rti.dds.topic.example.FooDataReader.take_next_instance operation follows the same rules as the com.rti.dds.topic.example.FooDataReader.read operation regarding the pre-conditions and post-conditions for the received_data and sample_info. Similar to the com.rti.dds.topic.example.FooDataReader.read, the com.rti.dds.topic.example.FooDataReader.take_next_instance operation may 'loan' elements to the output collections, which must then be returned by means of com.rti.dds.topic.example.FooDataReader.return_loan.

Similar to the com.rti.dds.topic.example.FooDataReader.read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
previous_handle <<in>> The 'next smallest' instance with a value greater than this value that has available samples will be returned. Must be a valid non-NULL com.rti.dds.infrastructure.InstanceHandle_t. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
sample_states <<in>> data samples matching ones of these sample_states are returned
view_states <<in>> data samples matching ones of these view_state are returned
instance_states <<in>> data samples matching ones of these instance_state are returned
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.take

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void read_next_instance_w_condition ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
InstanceHandle_t  previous_handle,
ReadCondition  condition 
)

Accesses via com.rti.dds.topic.example.FooDataReader.read_next_instance the samples that match the criteria specified in the com.rti.dds.subscription.ReadCondition.

This operation accesses a collection of data values from the com.rti.dds.subscription.DataReader. The behavior is identical to com.rti.dds.topic.example.FooDataReader.read_next_instance, except that all returned samples satisfy the specified condition. In other words, on success, all returned samples belong to the same instance, and the instance is the instance with 'smallest' instance_handle among the ones that verify: (a) instance_handle >= previous_handle, and (b) have samples for which the specified com.rti.dds.subscription.ReadCondition evaluates to TRUE.

Similar to the operation com.rti.dds.topic.example.FooDataReader.read_next_instance, it is possible to call com.rti.dds.topic.example.FooDataReader.read_next_instance_w_condition with a previous_handle that does not correspond to an instance currently managed by the com.rti.dds.subscription.DataReader.

The behavior of the com.rti.dds.topic.example.FooDataReader.read_next_instance_w_condition operation follows the same rules as the com.rti.dds.topic.example.FooDataReader.read operation regarding the pre-conditions and post-conditions for the received_data and sample_info. Similar to the com.rti.dds.topic.example.FooDataReader.read, the com.rti.dds.topic.example.FooDataReader.read_next_instance_w_condition operation may 'loan' elements to the output collections, which must then be returned by means of com.rti.dds.topic.example.FooDataReader.return_loan.

Similar to the com.rti.dds.topic.example.FooDataReader.read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
previous_handle <<in>> The 'next smallest' instance with a value greater than this value that has available samples will be returned. Must be a valid non-NULL com.rti.dds.infrastructure.InstanceHandle_t. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
condition <<in>> the com.rti.dds.subscription.ReadCondition to select samples of interest. Cannot be NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET RETCODE_NO_DATA or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.read_next_instance

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void take_next_instance_w_condition ( FooSeq  received_data,
SampleInfoSeq  info_seq,
int  max_samples,
InstanceHandle_t  previous_handle,
ReadCondition  condition 
)

Accesses via com.rti.dds.topic.example.FooDataReader.take_next_instance the samples that match the criteria specified in the com.rti.dds.subscription.ReadCondition.

This operation accesses a collection of data values from the com.rti.dds.subscription.DataReader and 'removes' them from the com.rti.dds.subscription.DataReader.

The operation has the same behavior as com.rti.dds.topic.example.FooDataReader.read_next_instance_w_condition, except that the samples are 'taken' from the com.rti.dds.subscription.DataReader such that they are no longer accessible via subsequent 'read' or 'take' operations.

Similar to the operation com.rti.dds.topic.example.FooDataReader.read_next_instance, it is possible to call com.rti.dds.topic.example.FooDataReader.take_next_instance_w_condition with a previous_handle that does not correspond to an instance currently managed by the com.rti.dds.subscription.DataReader.

The behavior of the com.rti.dds.topic.example.FooDataReader.take_next_instance_w_condition operation follows the same rules as the com.rti.dds.topic.example.FooDataReader.read operation regarding the pre-conditions and post-conditions for the received_data and sample_info. Similar to com.rti.dds.topic.example.FooDataReader.read, the com.rti.dds.topic.example.FooDataReader.take_next_instance_w_condition operation may 'loan' elements to the output collections, which must then be returned by means of com.rti.dds.topic.example.FooDataReader.return_loan.

Similar to the com.rti.dds.topic.example.FooDataReader.read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

If the com.rti.dds.subscription.DataReader has no samples that meet the constraints, the method will fail with RETCODE_NO_DATA.

Parameters:
received_data <<inout>> user data type-specific com.rti.dds.util.Sequence object where the received data samples will be returned. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
info_seq <<inout>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info will be returned. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
max_samples <<in>> The maximum number of samples to be returned. If the special value ResourceLimitsQosPolicy.LENGTH_UNLIMITED is provided, as many samples will be returned as are available, up to the limits described in the documentation for com.rti.dds.topic.example.FooDataReader.take().
previous_handle <<in>> The 'next smallest' instance with a value greater than this value that has available samples will be returned. Must be a valid non-NULL com.rti.dds.infrastructure.InstanceHandle_t. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
condition <<in>> the com.rti.dds.subscription.ReadCondition to select samples of interest. Cannot be NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET, or RETCODE_NO_DATA, RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataReader.take_next_instance

ResourceLimitsQosPolicy.LENGTH_UNLIMITED

void return_loan ( FooSeq  received_data,
SampleInfoSeq  info_seq 
)

Indicates to the com.rti.dds.subscription.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 com.rti.dds.subscription.DataReader.

This operation indicates to the com.rti.dds.subscription.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 com.rti.dds.subscription.DataReader.

The received_data and info_seq must belong to a single related "pair"; that is, they should correspond to a pair returned from a single call to read or take. The received_data and info_seq must also have been obtained from the same com.rti.dds.subscription.DataReader to which they are returned. If either of these conditions is not met, the operation will fail with RETCODE_PRECONDITION_NOT_MET.

The operation com.rti.dds.topic.example.FooDataReader.return_loan allows implementations of the read and take operations to "loan" buffers from the com.rti.dds.subscription.DataReader to the application and in this manner provide "zerocopy" access to the data. During the loan, the com.rti.dds.subscription.DataReader will guarantee that the data and sample-information are not modified.

It is not necessary for an application to return the loans immediately after the read or take calls. However, as these buffers correspond to internal resources inside the com.rti.dds.subscription.DataReader, the application should not retain them indefinitely.

The use of com.rti.dds.topic.example.FooDataReader.return_loan is only necessary if the read or take calls "loaned" buffers to the application. This only occurs if the received_data and info_Seq collections had max_len=0 at the time read or take was called.

If the collections had a loan, upon completion of com.rti.dds.topic.example.FooDataReader.return_loan, the collections will have max_len=0.

Similar to read, this operation must be provided on the specialized class that is generated for the particular application data-type that is being taken.

Parameters:
received_data <<in>> user data type-specific com.rti.dds.util.Sequence object where the received data samples was obtained from earlier invocation of read or take on the com.rti.dds.subscription.DataReader. Must be a valid non-NULL FooSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.

Parameters:
info_seq <<in>> a com.rti.dds.subscription.SampleInfoSeq object where the received sample info was obtained from earlier invocation of read or take on the com.rti.dds.subscription.DataReader. Must be a valid non-NULL com.rti.dds.subscription.SampleInfoSeq. The method will fail with RETCODE_BAD_PARAMETER if it is NULL.
Exceptions:
One of the Standard Return Codes, RETCODE_PRECONDITION_NOT_MET or RETCODE_NOT_ENABLED.

void get_key_value ( Foo  key_holder,
InstanceHandle_t  handle 
)

Retrieve the instance key that corresponds to an instance handle.

Useful for keyed data types.

The operation will only fill the fields that form the key inside the key_holder instance.

For keyed data types, this operation may fail with RETCODE_BAD_PARAMETER if the handle does not correspond to an existing data-object known to the com.rti.dds.subscription.DataReader.

Parameters:
key_holder <<inout>> a user data type specific key holder, whose key fields are filled by this operation. If Foo has no key, this method has no effect. This method will fail with RETCODE_BAD_PARAMETER if key_holder is NULL.
handle <<in>> the instance whose key is to be retrieved. If Foo has a key, handle must represent an existing instance of type Foo known to the com.rti.dds.subscription.DataReader. Otherwise, this method will fail with RETCODE_BAD_PARAMETER. If Foo has a key and handle is InstanceHandle_t.HANDLE_NIL, this method will fail with RETCODE_BAD_PARAMETER. If Foo has a key and handle represents an instance of another type or an instance of type Foo that has been unregistered, this method will fail with RETCODE_BAD_PARAMETER. If Foo has no key, this method has no effect. This method will fail with RETCODE_BAD_PARAMETER if handle is NULL.
Exceptions:
One of the Standard Return Codes or RETCODE_NOT_ENABLED.
See also:
com.rti.dds.topic.example.FooDataWriter.get_key_value

InstanceHandle_t lookup_instance ( Foo  key_holder  ) 

Retrieves the instance handle that corresponds to an instance key_holder.

Useful for keyed data types.

This operation takes as a parameter an instance and returns a handle that can be used in subsequent operations that accept an instance handle as an argument. The instance parameter is only used for the purpose of examining the fields that define the key. This operation does not register the instance in question. If the instance has not been previously registered, or if for any other reason the Service is unable to provide an instance handle, the Service will return the special value HANDLE_NIL.

Parameters:
key_holder <<in>> a user data type specific key holder.
Returns:
the instance handle associated with this instance. If Foo has no key, this method has no effect and returns InstanceHandle_t.HANDLE_NIL


RTI Connext Java API Version 4.5f Copyright © 17 Mar 2012 Real-Time Innovations, Inc