ADTF
|
A reader that does not read anything. More...
Public Member Functions | |
cNullReader () | |
Constructor. | |
~cNullReader () override | |
Destructor. | |
void | SetName (const char *strName) override |
Sets the name of the streamer. More... | |
tResult | GetName (base::ant::IString &&strName) override |
Retrieves the name of the streamer. More... | |
tResult | SetType (const ucom::ant::iobject_ptr< const ant::IStreamType > &pStreamType) override |
Sets the initial stream type of a streamer. More... | |
tResult | GetType (ucom::ant::iobject_ptr< const ant::IStreamType > &pStreamType) const override |
Returns the initial stream type of the streamer. More... | |
tResult | BeginStreaming (ant::ISampleStream &pStream) override |
Begin streaming on the given sample stream. More... | |
tResult | EndStreaming () override |
End streaming. More... | |
tResult | SetStreamerPin (const ucom::ant::iobject_ptr< flash::IStreamerPin > &pStreamerPin) override |
Sets the pin that the streamer is associated with. More... | |
tResult | GetNextSample (ucom::ant::iobject_ptr< const ant::ISample > &pSample) override |
Reads the next available sample from the associated sample stream. More... | |
tResult | GetLastSample (ucom::ant::iobject_ptr< const ant::ISample > &pSample) override |
Reads the latest available sample from the associated sample stream. More... | |
tResult | GetLastType (ucom::ant::iobject_ptr< const ant::IStreamType > &pType) override |
Returns the last stream type that was read from the sample stream. More... | |
tResult | SetStreamError (tResult oError) override |
Sets an error on the associated sample stream. More... | |
tResult | ReadAllAvailableItems () override |
Reads all available items from the sample stream into internal queues. More... | |
void | SetAcceptTypeCallback (const std::function< tResult(const ucom::ant::iobject_ptr< const ant::IStreamType > &pStreamType)> &fnAcceptTypeCallback) |
void | SetStreamErrorCallback (const std::function< tResult(tResult oStreamError)> &fnStreamErrorCallback) |
Protected Attributes | |
std::unique_ptr< cImplementation > | m_pImplementation |
A reader that does not read anything.
Use this to discard all samples and stream types.
Definition at line 1167 of file samplereader.h.
|
overridevirtual |
Begin streaming on the given sample stream.
[in] | pStream | the sample stream. |
Implements ISampleStreamer.
|
overridevirtual |
|
overridevirtual |
Reads the latest available sample from the associated sample stream.
If more than a single new sample was availablle, all but the last sample will be discarded.
If no new sample was available the last sample previously fetched will be returned again.
[out] | pSample | This will refrerence the sample. |
ERR_EMTPY | No sample available |
Implements ISampleReader.
|
overridevirtual |
Returns the last stream type that was read from the sample stream.
[out] | pType | This will reference the last stream type |
Implements ISampleReader.
|
overridevirtual |
Retrieves the name of the streamer.
[out] | strName | This will be updated with the name. |
Implements ISampleStreamer.
|
overridevirtual |
Reads the next available sample from the associated sample stream.
[out] | pSample | This will refrerence the sample. |
ERR_EMTPY | No sample available |
Implements ISampleReader.
|
overridevirtual |
Returns the initial stream type of the streamer.
[out] | pStreamType | This will reference the initial stream type. |
Implements ISampleStreamer.
|
overridevirtual |
Reads all available items from the sample stream into internal queues.
Implements ISampleReader.
|
overridevirtual |
Sets the name of the streamer.
This will be used when creating pins.
[in] | strName | The name |
Implements ISampleStreamer.
|
overridevirtual |
Sets the pin that the streamer is associated with.
[in] | pStreamerPin | The pin. |
Implements ISampleStreamer.
Sets an error on the associated sample stream.
[in] | oError | The error. |
Implements ISampleReader.
|
overridevirtual |
Sets the initial stream type of a streamer.
[in] | pStreamType | The stream type |
Implements ISampleStreamer.