RTI Connext Traditional C++ API
Version 6.0.0
|
Called when a connext::Replier has new available requests. More...
Inherited by connext::details::SimpleReplierImpl< TReq, TRep >::InnerRequestListener.
Public Member Functions | |
virtual void | on_request_available (Replier< TReq, TRep > &replier)=0 |
User callback. | |
Called when a connext::Replier has new available requests.
A replier listener is a way to implement a callback that will be invoked when requests are available. It is an optional connext::ReplierParams.
This listener simply notifies when requests are available. The callback implementation can then use connext::Replier::take_requests(int) to retrieve them.
A simpler callback mechanism, where one request sample is a parameter and the reply is the callback return value, is implemented by the connext::SimpleReplier.
|
pure virtual |
User callback.