Cyclone ISO C++ API Reference Guide
|
This class encapsulates and automates the management of loaned samples. More...
#include "LoanedSamples.hpp"
Public Types | |
typedef DELEGATE< T >::const_iterator | const_iterator |
typedef T | DataType |
Public Member Functions | |
LoanedSamples () | |
LoanedSamples (const LoanedSamples &other) | |
~LoanedSamples () | |
const_iterator | begin () const |
const_iterator | end () const |
uint32_t | length () const |
This class encapsulates and automates the management of loaned samples.
It is a container which is used to hold samples which have been read or taken by the DataReader. Samples are effectively "loaned" from the DataReader to avoid the need to copy the data. When the LoanedSamples container goes out of scope the loan is automatically returned.
LoanedSamples maintains a ref count so that the loan will only be returned once all copies of the same LoanedSamples have been destroyed.
Definition at line 87 of file LoanedSamples.hpp.
typedef DELEGATE<T>::const_iterator dds::sub::LoanedSamples< T >::const_iterator |
Convenience typedef for the iterator over the loaned samples.
Definition at line 98 of file LoanedSamples.hpp.
typedef T dds::sub::LoanedSamples< T >::DataType |
Convenience typedef for the type of the data sample.
Definition at line 93 of file LoanedSamples.hpp.
dds::sub::LoanedSamples< T >::LoanedSamples | ( | ) |
Constructs a LoanedSamples instance.
dds::sub::LoanedSamples< T >::~LoanedSamples | ( | ) |
Implicitly return the loan if this is the last object with a reference to the contained loan.
dds::sub::LoanedSamples< T >::LoanedSamples | ( | const LoanedSamples< T > & | other | ) |
Copies a LoanedSamples instance.
No actual data samples are copied.
Just references and reference counts are updated.
const_iterator dds::sub::LoanedSamples< T >::begin | ( | ) | const |
Gets an iterator pointing to the first sample in the LoanedSamples container.
See example.
const_iterator dds::sub::LoanedSamples< T >::end | ( | ) | const |
Gets an iterator pointing to the end of the LoanedSamples container.
See example.
uint32_t dds::sub::LoanedSamples< T >::length | ( | ) | const |
Gets the number of samples within the LoanedSamples container.