RTI Connext Modern C++ API
Version 5.3.0
|
A listener with an empty implementation of all methods. More...
#include <QueueConsumerListener.hpp>
Public Member Functions | |
virtual void | on_sample_available (QueueConsumer< T > &) |
User callback. | |
virtual void | on_shared_reader_queue_matched (QueueConsumer< T > &, const dds::core::status::SubscriptionMatchedStatus &) |
User callback. | |
A listener with an empty implementation of all methods.
You can derive your listener from this class so you don't have to implement the methods you don't need.
|
inlinevirtual |
User callback.
This callback is invoked whenever the QueueConsumer has received at least one sample. Any operation to get samples i.e. QueueConsumer::take_sample) can be called within this context.
Implements rti::queuing::QueueConsumerListener< T >.
|
inlinevirtual |
User callback.
This callback is invoked whenever a new SharedReaderQueue hosted by Queuing Service has matched the QueueConsumer, or if an existing matching SharedReaderQueue is disposed.
Implements rti::queuing::QueueConsumerListener< T >.