Cyclone ISO C++ API Reference Guide
|
A WaitSet object allows an application to wait until one or more of the attached Condition objects has a trigger_value of TRUE or else until the timeout expires. More...
#include "WaitSet.hpp"
Inherits dds::core::Reference< DELEGATE >.
Public Types | |
typedef std::vector< dds::core::cond::Condition > | ConditionSeq |
Public Member Functions | |
WaitSet () | |
WaitSet & | attach_condition (const dds::core::cond::Condition &cond) |
const ConditionSeq | conditions () const |
ConditionSeq & | conditions (ConditionSeq &conds) const |
bool | detach_condition (const dds::core::cond::Condition &cond) |
void | dispatch () |
void | dispatch (const dds::core::Duration &timeout) |
bool | is_nil () const |
bool | operator!= (const null_type nil) const |
template<typename R > | |
bool | operator!= (const R &ref) const |
WaitSet & | operator+= (const dds::core::cond::Condition &cond) |
WaitSet & | operator-= (const dds::core::cond::Condition &cond) |
DELEGATE * | operator-> () |
const DELEGATE * | operator-> () const |
bool | operator== (const null_type) const |
template<typename R > | |
bool | operator== (const R &ref) const |
const ConditionSeq | wait () |
ConditionSeq & | wait (ConditionSeq &triggered) |
ConditionSeq & | wait (ConditionSeq &triggered, const dds::core::Duration &timeout) |
const ConditionSeq | wait (const dds::core::Duration &timeout) |
A WaitSet object allows an application to wait until one or more of the attached Condition objects has a trigger_value of TRUE or else until the timeout expires.
A WaitSet is not necessarily associated with a single DomainParticipant and could be used to wait for Condition objects associated with different DomainParticipant objects.
Example with wait()
When using the wait() operation, the triggered Conditions are returned in a list.
Example with dispatch()
When using the dispatch() operation, the Functors of the triggered Conditions will be called.
Definition at line 110 of file WaitSet.hpp.
typedef std::vector<dds::core::cond::Condition> dds::core::cond::WaitSet::ConditionSeq |
Definition at line 113 of file WaitSet.hpp.
dds::core::cond::WaitSet::WaitSet | ( | ) |
Create a WaitSet instance.
dds::core::Error | An internal error has occurred. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
WaitSet& dds::core::cond::WaitSet::attach_condition | ( | const dds::core::cond::Condition & | cond | ) |
This operation attaches a Condition to the WaitSet.
Attaches a Condition to the WaitSet. It is possible to attach a Condition on a WaitSet that is currently being waited upon (via the wait operation). In this case, if the Condition has a trigger_value of TRUE, then attaching the Condition will unblock the WaitSet. Adding a Condition that is already attached to the WaitSet has no effect.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
const ConditionSeq dds::core::cond::WaitSet::conditions | ( | ) | const |
This operation retrieves the list of attached Conditions.
The resulting sequence will either be an empty sequence, meaning there were no conditions attached, or will contain a list of ReadCondition, QueryCondition, StatusCondition and GuardCondition.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
ConditionSeq& dds::core::cond::WaitSet::conditions | ( | ConditionSeq & | conds | ) | const |
This operation retrieves the list of attached Conditions.
The resulting sequence will either be an empty sequence, meaning there were no conditions attached, or will contain a list of ReadCondition, QueryCondition, StatusCondition and GuardCondition.
conds | A ConditionSeq in which to put the attached Conditions. |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
bool dds::core::cond::WaitSet::detach_condition | ( | const dds::core::cond::Condition & | cond | ) |
This operation detaches a Condition to the WaitSet.
Detaches a Condition from the WaitSet. If the Condition was not attached to the WaitSet, the operation will return false.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
void dds::core::cond::WaitSet::dispatch | ( | ) |
Waits for at least one of the attached Conditions to trigger and then dispatches the functor associated with the Condition.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::PreconditionNotMetError | When multiple thread try to invoke the function concurrently. |
void dds::core::cond::WaitSet::dispatch | ( | const dds::core::Duration & | timeout | ) |
Waits for at least one of the attached Conditions to trigger and then dispatches the functor associated with the Condition, or, times out and throws a TimeoutError.
timeout | The maximum amount of time for which the dispatch should block while waiting for a Condition to be triggered. |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::TimeoutError | The timeout has elapsed without any of the attached conditions becoming TRUE. |
dds::core::PreconditionNotMetError | When multiple thread try to invoke the function concurrently. |
|
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 |
WaitSet& dds::core::cond::WaitSet::operator+= | ( | const dds::core::cond::Condition & | cond | ) |
This operation attaches a Condition to the WaitSet.
Attaches a Condition to the WaitSet. It is possible to attach a Condition on a WaitSet that is currently being waited upon (via the wait operation). In this case, if the Condition has a trigger_value of TRUE, then attaching the Condition will unblock the WaitSet. Adding a Condition that is already attached to the WaitSet has no effect.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
WaitSet& dds::core::cond::WaitSet::operator-= | ( | const dds::core::cond::Condition & | cond | ) |
This operation detaches a Condition to the WaitSet.
Detaches a Condition from the WaitSet. If the Condition was not attached to the WaitSet, the operation will return false.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
|
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 |
const ConditionSeq dds::core::cond::WaitSet::wait | ( | ) |
This operation allows an application thread to wait for the occurrence of at least one of the conditions that is attached to the WaitSet.
This operation allows an application thread to wait for the occurrence of certain Conditions. If none of the Conditions attached to the WaitSet have a trigger_value of TRUE, the wait operation will block suspending the calling thread.
It is not allowed for more than one application thread to be waiting on the same WaitSet. If the wait operation is invoked on a WaitSet that already has a thread blocking on it, the operation will immediately raise a PreconditionNotMetError exception.
The result of the wait operation is the list of all the attached Conditions that have a trigger_value of TRUE (i.e., the Conditions that unblocked the wait).
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::PreconditionNotMetError | When multiple thread try to invoke the function concurrently. |
ConditionSeq& dds::core::cond::WaitSet::wait | ( | ConditionSeq & | triggered | ) |
This operation allows an application thread to wait for the occurrence of at least one of the conditions that is attached to the WaitSet.
This operation allows an application thread to wait for the occurrence of certain Conditions. If none of the Conditions attached to the WaitSet have a trigger_value of TRUE, the wait operation will block suspending the calling thread.
It is not allowed for more than one application thread to be waiting on the same WaitSet. If the wait operation is invoked on a WaitSet that already has a thread blocking on it, the operation will immediately raise a PreconditionNotMetError exception.
The result of the wait operation is the list of all the attached Conditions that have a trigger_value of TRUE (i.e., the Conditions that unblocked the wait).
triggered | A ConditionSeq in which to put Conditions that were triggered during the wait. |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::PreconditionNotMetError | When multiple thread try to invoke the function concurrently. |
ConditionSeq& dds::core::cond::WaitSet::wait | ( | ConditionSeq & | triggered, |
const dds::core::Duration & | timeout | ||
) |
This operation allows an application thread to wait for the occurrence of at least one of the conditions that is attached to the WaitSet.
This operation allows an application thread to wait for the occurrence of certain Conditions. If none of the Conditions attached to the WaitSet have a trigger_value of TRUE, the wait operation will block suspending the calling thread.
The wait operation takes a timeout argument that specifies the maximum duration for the wait. If this duration is exceeded and none of the attached Condition objects is true, a TimeoutError will be thrown.
It is not allowed for more than one application thread to be waiting on the same WaitSet. If the wait operation is invoked on a WaitSet that already has a thread blocking on it, the operation will immediately raise a PreconditionNotMetError exception.
The result of the wait operation is the list of all the attached Conditions that have a trigger_value of TRUE (i.e., the Conditions that unblocked the wait).
triggered | A ConditionSeq in which to put Conditions that were triggered during the wait. |
timeout | The maximum amount of time for which the wait should block while waiting for a Condition to be triggered. |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::TimeoutError | The timeout has elapsed without any of the attached conditions becoming TRUE. |
dds::core::PreconditionNotMetError | When multiple thread try to invoke the function concurrently. |
const ConditionSeq dds::core::cond::WaitSet::wait | ( | const dds::core::Duration & | timeout | ) |
This operation allows an application thread to wait for the occurrence of at least one of the conditions that is attached to the WaitSet.
This operation allows an application thread to wait for the occurrence of certain Conditions. If none of the Conditions attached to the WaitSet have a trigger_value of TRUE, the wait operation will block suspending the calling thread.
The wait operation takes a timeout argument that specifies the maximum duration for the wait. If this duration is exceeded and none of the attached Condition objects is true, a TimeoutError will be thrown.
It is not allowed for more than one application thread to be waiting on the same WaitSet. If the wait operation is invoked on a WaitSet that already has a thread blocking on it, the operation will immediately raise a PreconditionNotMetError exception.
The result of the wait operation is the list of all the attached Conditions that have a trigger_value of TRUE (i.e., the Conditions that unblocked the wait).
timeout | The maximum amount of time for which the wait should block while waiting for a Condition to be triggered. |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The WaitSet was not properly created and references to dds::core::null. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::TimeoutError | The timeout has elapsed without any of the attached conditions becoming TRUE. |
dds::core::PreconditionNotMetError | When multiple thread try to invoke the function concurrently. |