Builder component of Multi reader objects. Contains setter methods to configure the Multi reader parameters and a build
method that builds the Unit object.
More...
Builder component of Multi reader objects. Contains setter methods to configure the Multi reader parameters and a build
method that builds the Unit object.
Public Member Functions | |
virtual ErrCode INTERFACE_FUNC | build (IMultiReader **multiReader)=0 |
Builds and returns a Multi reader object using the currently set values of the Builder. More... | |
virtual ErrCode INTERFACE_FUNC | addSignal (ISignal *signal)=0 |
Adds the signal to list in multi reader. More... | |
virtual ErrCode INTERFACE_FUNC | addInputPort (IInputPort *port)=0 |
Adds the input port to list in multi reader. More... | |
virtual ErrCode INTERFACE_FUNC | getSourceComponents (IList **ports)=0 |
Gets the list of input ports. More... | |
virtual ErrCode INTERFACE_FUNC | setValueReadType (SampleType type)=0 |
Sets the value signal read type. More... | |
virtual ErrCode INTERFACE_FUNC | getValueReadType (SampleType *type)=0 |
Gets the value signal read type. More... | |
virtual ErrCode INTERFACE_FUNC | setDomainReadType (SampleType type)=0 |
Sets the domain signal read type. More... | |
virtual ErrCode INTERFACE_FUNC | getDomainReadType (SampleType *type)=0 |
Gets the domain signal read type. More... | |
virtual ErrCode INTERFACE_FUNC | setReadMode (ReadMode mode)=0 |
Sets the read mode (Unscaled, Scaled, RawValue) More... | |
virtual ErrCode INTERFACE_FUNC | getReadMode (ReadMode *mode)=0 |
Gets the read mode (Unscaled, Scaled, RawValue) More... | |
virtual ErrCode INTERFACE_FUNC | setReadTimeoutType (ReadTimeoutType type)=0 |
Sets the read timeout mode. More... | |
virtual ErrCode INTERFACE_FUNC | getReadTimeoutType (ReadTimeoutType *type)=0 |
Gets the read timeout mode. More... | |
virtual ErrCode INTERFACE_FUNC | setRequiredCommonSampleRate (Int sampleRate)=0 |
Sets the required common sample rate. More... | |
virtual ErrCode INTERFACE_FUNC | getRequiredCommonSampleRate (Int *sampleRate)=0 |
Gets the required common sample rate. More... | |
virtual ErrCode INTERFACE_FUNC | setStartOnFullUnitOfDomain (Bool enabled)=0 |
Sets the start on full unit of domain. More... | |
virtual ErrCode INTERFACE_FUNC | getStartOnFullUnitOfDomain (Bool *enabled)=0 |
Gets the start on full unit of domain. More... | |
virtual ErrCode INTERFACE_FUNC | setMinReadCount (SizeT minReadCount)=0 |
Sets the minimal number of samples to read. More... | |
virtual ErrCode INTERFACE_FUNC | getMinReadCount (SizeT *minReadCount)=0 |
Gets the minimal number of samples to read. More... | |
![]() | |
virtual ErrCode INTERFACE_FUNC | borrowInterface (const IntfID &intfID, void **obj) const =0 |
Returns another interface which is supported by the object without incrementing the reference count. More... | |
virtual ErrCode INTERFACE_FUNC | dispose ()=0 |
Disposes all references held by the object. More... | |
virtual ErrCode INTERFACE_FUNC | getHashCode (SizeT *hashCode)=0 |
Returns hash code of the object. More... | |
virtual ErrCode INTERFACE_FUNC | equals (IBaseObject *other, Bool *equal) const =0 |
Compares object to another object for equality. More... | |
virtual ErrCode INTERFACE_FUNC | toString (CharPtr *str)=0 |
Returns a string representation of the object. More... | |
![]() | |
virtual ErrCode INTERFACE_FUNC | queryInterface (const IntfID &intfID, void **obj)=0 |
Returns another interface which is supported by the object and increments the reference count. More... | |
virtual int INTERFACE_FUNC | addRef ()=0 |
Increments the reference count for an interface on an object. More... | |
virtual int INTERFACE_FUNC | releaseRef ()=0 |
Decrements the reference count for an interface on an object. More... | |
|
pure virtual |
Adds the input port to list in multi reader.
port | The input port which will be handled in multi reader |
Adds the signal to list in multi reader.
signal | The signal which will be handled in multi reader |
|
pure virtual |
Builds and returns a Multi reader object using the currently set values of the Builder.
[out] | multiReader | The built Multi reader. |
|
pure virtual |
Gets the domain signal read type.
[out] | type | The domain signal read type |
|
pure virtual |
Gets the minimal number of samples to read.
[out] | minReadCount | The minimal number of samples to read. |
If set, the reader will return 0 for getAvailableCount
if less than minReadCount
samples are available. It will also never read less than minReadCount
samples. The default value is 1.
|
pure virtual |
Gets the read mode (Unscaled, Scaled, RawValue)
[out] | mode | The read mode |
|
pure virtual |
Gets the read timeout mode.
type | The timeout mode. if "Any" returns immediately if there is available data otherwise time-out is exceeded. if "All" waiting until timeout and returns available data if existing. otherwise time-out is exceeded. |
|
pure virtual |
Gets the required common sample rate.
sampleRate | The required common sample rate |
Gets the list of input ports.
[out] | ports | The list of input ports |
|
pure virtual |
Gets the start on full unit of domain.
enabled | enable/disable start on full unit of domain |
|
pure virtual |
Gets the value signal read type.
[out] | type | The value signal read type |
|
pure virtual |
Sets the domain signal read type.
type | The domain signal read type |
|
pure virtual |
Sets the minimal number of samples to read.
minReadCount | The minimal number of samples to read. |
If set, the reader will return 0 for getAvailableCount
if less than minReadCount
samples are available. It will also never read less than minReadCount
samples. The default value is 1.
|
pure virtual |
Sets the read mode (Unscaled, Scaled, RawValue)
mode | The read mode |
|
pure virtual |
Sets the read timeout mode.
type | The timeout mode. if "Any" returns immediately if there is available data otherwise time-out is exceeded. if "All" waiting until timeout and returns available data if existing. otherwise time-out is exceeded. |
|
pure virtual |
Sets the required common sample rate.
sampleRate | The required common sample rate |
|
pure virtual |
Sets the start on full unit of domain.
enabled | enable/disable start on full unit of domain |
|
pure virtual |
Sets the value signal read type.
type | The value signal read type |