Cyclone ISO C++ API Reference Guide
|
A StatusCondition object is a specific Condition that is associated with each Entity. More...
#include "StatusCondition.hpp"
Inherits dds::core::cond::Condition.
Public Member Functions | |
StatusCondition (const dds::core::Entity &e) | |
template<typename FUN > | |
StatusCondition (const dds::core::Entity &e, const FUN &functor) | |
template<typename FUN > | |
StatusCondition (const dds::core::Entity &e, FUN &functor) | |
void | dispatch () |
const ::dds::core::status::StatusMask | enabled_statuses () const |
void | enabled_statuses (const ::dds::core::status::StatusMask &status) const |
const dds::core::Entity & | entity () const |
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 |
A StatusCondition object is a specific Condition that is associated with each Entity.
Entity objects that have status attributes also have a StatusCondition, access is provided to the application by the get_statuscondition operation. The communication statuses whose changes can be communicated to the application depend on the Entity. The following table shows the relevant statuses for each Entity.
The inherited dds::core::cond::Condition::trigger_value() of the StatusCondition depends on the communication statuses of that Entity (e.g., missed deadline) and also depends on the value of the dds::core::status::StatusMask.
A StatusCondition can be attached to a WaitSet in order to allow an application to suspend until the trigger_value has become TRUE.
The trigger_value of a StatusCondition will be TRUE if one of the enabled StatusChangedFlags is set. That is, trigger_value==FALSE only if all the values of the StatusChangedFlags are FALSE.
The sensitivity of the StatusCondition to a particular communication status is controlled by the list of enabled_statuses set on the condition by means of dds::core::cond::StatusCondition::enabled_statuses(const ::dds::core::status::StatusMask& status) When the enabled_statuses are not changed by that operation, all statuses are enabled by default.
See the WaitSet examples for examples how to use this Condition.
Definition at line 82 of file StatusCondition.hpp.
dds::core::cond::StatusCondition::StatusCondition | ( | const dds::core::Entity & | e | ) |
Create a dds::core::cond::StatusCondition associated with an Entity.
The StatusCondition can then be added to a dds::core::cond::WaitSet so that the application can wait for specific status changes that affect the Entity.
e | The Entity to associate with the StatusCondition. |
dds::core::Exception |
dds::core::cond::StatusCondition::StatusCondition | ( | const dds::core::Entity & | e, |
FUN & | functor | ||
) |
Create a dds::core::cond::StatusCondition associated with an Entity.
The StatusCondition can then be added to a dds::core::cond::WaitSet so that the application can wait for specific status changes that affect the Entity.
The supplied functor will be called when this StatusCondition is triggered and either the inherited dds::core::cond::Condition::dispatch() is called or the dds::core::cond::WaitSet::dispatch() on the WaitSet to which this StatusCondition is attached to.
e | The Entity to associate with the StatusCondition. |
functor | The functor to be called when the StatusCondition triggers. |
dds::core::Exception |
dds::core::cond::StatusCondition::StatusCondition | ( | const dds::core::Entity & | e, |
const FUN & | functor | ||
) |
Create a dds::core::cond::StatusCondition associated with an Entity.
The StatusCondition can then be added to a dds::core::cond::WaitSet so that the application can wait for specific status changes that affect the Entity.
The supplied functor will be called when this StatusCondition is triggered and either the inherited dds::core::cond::Condition::dispatch() is called or the dds::core::cond::WaitSet::dispatch() on the WaitSet to which this StatusCondition is attached to.
e | The Entity to associate with the StatusCondition. |
functor | The functor to be called when the StatusCondition triggers. |
dds::core::Exception |
|
inherited |
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 |
const ::dds::core::status::StatusMask dds::core::cond::StatusCondition::enabled_statuses | ( | ) | const |
This operation returns the list of enabled communication statuses of the StatusCondition.
The inherited dds::core::cond::Condition::trigger_value() of the StatusCondition depends on the communication status of that Entity (e.g., missed deadline, loss of information, etc.), ‘filtered’ by the set of enabled_statuses on the StatusCondition.
This operation returns the list of communication statuses that are taken into account to determine the trigger_value of the StatusCondition. This operation returns the statuses that were explicitly set on the last call to dds::core::cond::StatusCondition::enabled_statuses(const ::dds::core::status::StatusMask& status) const or, if enabled_statuses(status) was never called, the default list.
The result value is a bit mask in which each bit shows which value has changed. The relevant bits represent one of the following statuses:
Each status bit is declared as a constant and can be used in an AND operation to check the status bit against the result of type StatusMask. Not all statuses are relevant to all Entity objects. See the respective Listener interfaces for each Entity for more information.
dds::core::Exception |
void dds::core::cond::StatusCondition::enabled_statuses | ( | const ::dds::core::status::StatusMask & | status | ) | const |
This operation sets the list of communication statuses that are taken into account to determine the trigger_value of the StatusCondition.
The inherited dds::core::cond::Condition::trigger_value() of the StatusCondition depends on the communication status of that Entity (e.g., missed deadline, loss of information, etc.), ‘filtered’ by the set of enabled_statuses on the StatusCondition.
This operation sets the list of communication statuses that are taken into account to determine the trigger_value of the StatusCondition. This operation may change the trigger_value of the StatusCondition.
dds::core::cond::WaitSet objects behaviour depend on the changes of the trigger_value of their attached Conditions. Therefore, any WaitSet to which the StatusCondition is attached is potentially affected by this operation. If this function is not invoked, the default list of enabled_statuses includes all the statuses.
The result value is a bit mask in which each bit shows which value has changed. The relevant bits represent one of the following statuses:
Each status bit is declared as a constant and can be used in an AND operation to check the status bit against the result of type StatusMask. Not all statuses are relevant to all Entity objects. See the respective Listener interfaces for each Entity for more information.
status | A bit mask in which each bit sets the status which is taken into account for the StatusCondition.the enabled statuses. |
dds::core::AlreadyClosedError | |
dds::core::Error |
const dds::core::Entity& dds::core::cond::StatusCondition::entity | ( | ) | const |
This operation returns the Entity associated with the StatusCondition
Note that there is exactly one Entity associated with each StatusCondition.
dds::core::AlreadyClosedError |
|
inherited |
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 |
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 |
|
inherited |
Resets the handler for this Condition.
After the invocation of this function no handler will be registered with this Condition.
dds::core::Exception |
|
inherited |
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 |