Public Types | Public Member Functions | List of all members
RTT::base::DataObjectInterface< T > Class Template Referenceabstract

A DataObjectInterface implements multi-threaded read/write solutions. More...

#include <DataObjectInterface.hpp>

Inheritance diagram for RTT::base::DataObjectInterface< T >:
Inheritance graph
[legend]

Public Types

typedef boost::call_traits< T >::param_type param_t
 
typedef boost::call_traits< T >::reference reference_t
 
typedef boost::shared_ptr< DataObjectInterface< T > > shared_ptr
 
typedef T value_t
 

Public Member Functions

virtual void clear ()=0
 
virtual bool data_sample (param_t sample, bool reset=true)=0
 
virtual value_t data_sample () const =0
 
 DataObjectInterface ()
 
virtual FlowStatus Get (reference_t pull, bool copy_old_data=true) const =0
 
virtual value_t Get () const =0
 
virtual bool Set (param_t push)=0
 
virtual ~DataObjectInterface ()
 
- Public Member Functions inherited from RTT::base::DataObjectBase
virtual ~DataObjectBase ()
 

Detailed Description

template<class T>
class RTT::base::DataObjectInterface< T >

A DataObjectInterface implements multi-threaded read/write solutions.

See also
DataObject
Parameters
TThe DataType which can be Get() or Set() with this DataObject.

Definition at line 58 of file DataObjectInterface.hpp.

Member Typedef Documentation

template<class T>
typedef boost::call_traits<T>::param_type RTT::base::DataObjectInterface< T >::param_t

Definition at line 62 of file DataObjectInterface.hpp.

template<class T>
typedef boost::call_traits<T>::reference RTT::base::DataObjectInterface< T >::reference_t

Definition at line 63 of file DataObjectInterface.hpp.

template<class T>
typedef boost::shared_ptr<DataObjectInterface<T> > RTT::base::DataObjectInterface< T >::shared_ptr

Used for shared_ptr management.

Definition at line 68 of file DataObjectInterface.hpp.

template<class T>
typedef T RTT::base::DataObjectInterface< T >::value_t

Definition at line 61 of file DataObjectInterface.hpp.

Constructor & Destructor Documentation

template<class T>
RTT::base::DataObjectInterface< T >::DataObjectInterface ( )
inline

Create a DataObject which is initially not reference counted.

Definition at line 73 of file DataObjectInterface.hpp.

template<class T>
virtual RTT::base::DataObjectInterface< T >::~DataObjectInterface ( )
inlinevirtual

Destructor.

Definition at line 78 of file DataObjectInterface.hpp.

Member Function Documentation

template<class T>
virtual void RTT::base::DataObjectInterface< T >::clear ( )
pure virtual

Clears any data stored by this data object, so that any subsequent Get() without a new Set() will return NoData.

Implements RTT::base::DataObjectBase.

Implemented in RTT::base::DataObjectLockFree< T >, RTT::base::DataObjectLocked< T >, and RTT::base::DataObjectUnSync< T >.

template<class T>
virtual bool RTT::base::DataObjectInterface< T >::data_sample ( param_t  sample,
bool  reset = true 
)
pure virtual

Provides a data sample to initialize this data object. As such enough storage space can be allocated before the actual writing begins.

Parameters
samplethe data sample
resetenforce reinitialization even if this operation clears the stored data.
Returns
true if the data object was successfully (re)initialized.

Implemented in RTT::base::DataObjectLockFree< T >, RTT::base::DataObjectLocked< T >, and RTT::base::DataObjectUnSync< T >.

template<class T>
virtual value_t RTT::base::DataObjectInterface< T >::data_sample ( ) const
pure virtual
template<class T>
virtual FlowStatus RTT::base::DataObjectInterface< T >::Get ( reference_t  pull,
bool  copy_old_data = true 
) const
pure virtual

Get a copy of the Data of this data object.

Parameters
pullA copy of the data.
copy_old_dataIf true, also copy the data if the data object has not been updated since the last call.

Implemented in RTT::base::DataObjectLockFree< T >, RTT::base::DataObjectLocked< T >, and RTT::base::DataObjectUnSync< T >.

template<class T>
virtual value_t RTT::base::DataObjectInterface< T >::Get ( ) const
pure virtual

Get a copy of the data of this data object.

Returns
A copy of the data.

Implemented in RTT::base::DataObjectLockFree< T >, RTT::base::DataObjectLocked< T >, and RTT::base::DataObjectUnSync< T >.

template<class T>
virtual bool RTT::base::DataObjectInterface< T >::Set ( param_t  push)
pure virtual

Set the data to a certain value.

Parameters
pushThe data which must be set.

Implemented in RTT::base::DataObjectLockFree< T >, RTT::base::DataObjectLocked< T >, and RTT::base::DataObjectUnSync< T >.


The documentation for this class was generated from the following file:


rtt
Author(s): RTT Developers
autogenerated on Fri Oct 25 2019 03:59:46