RTI Connext Traditional C++ API
Version 7.0.0
|
<<interface>> A specific DDSCondition whose trigger_value
is completely under the control of the application.
More...
Public Member Functions | |
virtual DDS_Boolean | get_trigger_value () |
Retrieve the trigger_value . More... | |
virtual DDS_ReturnCode_t | set_trigger_value (DDS_Boolean value) |
Set the guard condition trigger value. More... | |
DDSGuardCondition () | |
No argument constructor. More... | |
virtual | ~DDSGuardCondition () |
Destructor. More... | |
Public Member Functions inherited from DDSCondition | |
virtual DDS_ReturnCode_t | set_handler (DDSConditionHandler *handler) |
<<extension>> Registers a DDSConditionHandler in this DDSCondition. More... | |
virtual DDSConditionHandler * | get_handler () |
<<extension>> Returns the registered DDSConditionHandler. More... | |
virtual void | dispatch () |
<<extension>> Calls DDSConditionHandler::on_condition_triggered of the registered DDSConditionHandler. More... | |
<<interface>> A specific DDSCondition whose trigger_value
is completely under the control of the application.
The DDSGuardCondition provides a way for an application to manually wake up a DDSWaitSet. This is accomplished by attaching the DDSGuardCondition to the DDSWaitSet and then setting the trigger_value
by means of the DDSGuardCondition::set_trigger_value operation.
DDSGuardCondition::DDSGuardCondition | ( | ) |
No argument constructor.
The default constructor initializes the guard condition with trigger value DDS_BOOLEAN_FALSE
|
virtual |
Destructor.
Releases the resources associated with this object.
Deleting a NULL condition is safe and has no effect.
|
virtual |
|
virtual |
Set the guard condition trigger value.
value | <<in>> the new trigger value. |