Cyclone ISO C++ API Reference Guide
|
This class is the base class for all the conditions that may be attached to a dds::core::cond::WaitSet. More...
#include "Condition.hpp"
Inherits dds::core::Reference< DELEGATE >.
Inherited by dds::core::cond::GuardCondition, dds::core::cond::StatusCondition, and dds::sub::cond::ReadCondition.
Public Member Functions | |
void | dispatch () |
template<typename Functor > | |
void | handler (const Functor &func) |
template<typename Functor > | |
void | handler (Functor &func) |
bool | is_nil () const |
bool | operator!= (const null_type nil) const |
template<typename R > | |
bool | operator!= (const R &ref) const |
DELEGATE * | operator-> () |
const DELEGATE * | operator-> () const |
bool | operator== (const null_type) const |
template<typename R > | |
bool | operator== (const R &ref) const |
void | reset_handler () |
bool | trigger_value () const |
This class is the base class for all the conditions that may be attached to a dds::core::cond::WaitSet.
This base class is specialized in three classes by the Data Distribution Service:
Each Condition has a trigger_value that can be TRUE or FALSE and is set by the Data Distribution Service (except a GuardCondition) depending on the evaluation of the Condition.
Definition at line 58 of file Condition.hpp.
void dds::core::cond::Condition::dispatch | ( | ) |
Dispatches the functor that have been registered with the Condition.
The Condition has to have been triggered for the functor will be called by this function.
dds::core::Exception |
void dds::core::cond::Condition::handler | ( | const Functor & | func | ) |
Registers a functor as custom handler with this Condition.
The supplied functor will be called when this Condition is triggered and either the dds::core::cond::Condition::dispatch() is called or the dds::core::cond::WaitSet::dispatch() on the WaitSet to which this Condition is attached to.
Functor | The functor to be called when the StatusCondition triggers. |
dds::core::Exception |
void dds::core::cond::Condition::handler | ( | Functor & | func | ) |
Registers a functor as custom handler with this Condition.
The supplied functor will be called when this Condition is triggered and either the dds::core::cond::Condition::dispatch() is called or the dds::core::cond::WaitSet::dispatch() on the WaitSet to which this Condition is attached to.
Functor | The functor to be called when the StatusCondition triggers. |
dds::core::Exception |
|
inherited |
Check if the referenced object is nil.
In other words, check if the reference is pointing to a null object.
|
inherited |
Special operator!= used to check if this reference object does not equal the dds::core::null reference.
The non-null-check can be done like this:
|
inherited |
|
inherited |
The operator->() is provided to be able to directly invoke functions on the delegate.
The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Reference and on all its subclasses as follows:
|
inherited |
The operator->() is provided to be able to directly invoke functions on the delegate.
The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Reference and on all its subclasses as follows:
|
inherited |
Special operator== used to check if this reference object equals the dds::core::null reference.
The null-check can be done like this:
|
inherited |
void dds::core::cond::Condition::reset_handler | ( | ) |
Resets the handler for this Condition.
After the invocation of this function no handler will be registered with this Condition.
dds::core::Exception |
bool dds::core::cond::Condition::trigger_value | ( | ) | const |
This operation retrieves the trigger_value of the Condition.
A Condition has a trigger_value that can be TRUE or FALSE and is set by the Data Distribution Service (except a GuardCondition). This operation returns the trigger_value of the Condition.
dds::core::Exception |