TYPE
- The concrete type of the data that can be delivered by
the DataReader
.public interface DataReaderListener<TYPE> extends EventListener
DataReader
is a kind of Entity
, it has the ability
to have an associated listener. In this case, the associated listener must
be of concrete type DataReaderListener.
The operation onSubscriptionMatched(SubscriptionMatchedEvent)
is
intended to inform the application of the discovery of DataWriter
entities that match the DataReader. Some implementations of the service
may not propagate this information. In that case the DDS specification
does not require this listener operation to be called.Modifier and Type | Method and Description |
---|---|
void |
onDataAvailable(DataAvailableEvent<TYPE> status) |
void |
onLivelinessChanged(LivelinessChangedEvent<TYPE> status) |
void |
onRequestedDeadlineMissed(RequestedDeadlineMissedEvent<TYPE> status) |
void |
onRequestedIncompatibleQos(RequestedIncompatibleQosEvent<TYPE> status) |
void |
onSampleLost(SampleLostEvent<TYPE> status) |
void |
onSampleRejected(SampleRejectedEvent<TYPE> status) |
void |
onSubscriptionMatched(SubscriptionMatchedEvent<TYPE> status) |
void onRequestedDeadlineMissed(RequestedDeadlineMissedEvent<TYPE> status)
void onRequestedIncompatibleQos(RequestedIncompatibleQosEvent<TYPE> status)
void onSampleRejected(SampleRejectedEvent<TYPE> status)
void onLivelinessChanged(LivelinessChangedEvent<TYPE> status)
void onDataAvailable(DataAvailableEvent<TYPE> status)
void onSubscriptionMatched(SubscriptionMatchedEvent<TYPE> status)
void onSampleLost(SampleLostEvent<TYPE> status)
Copyright © 2014. All rights reserved.