Cyclone ISO C++ API Reference Guide
|
Class for RAII way of beginning/ending coherent access. More...
#include "CoherentAccess.hpp"
Inherits dds::core::Value< D >.
Public Member Functions | |
CoherentAccess (const dds::sub::Subscriber &sub) | |
~CoherentAccess () | |
void | end () |
bool | operator!= (const Value &other) const |
D * | operator-> () |
const D * | operator-> () const |
bool | operator== (const Value &other) const |
Class for RAII way of beginning/ending coherent access.
Coherent access indicates that the application is about to access the data samples in any of the DataReader objects attached to the Subscriber.
The application is required to use this operation only if Presentation QosPolicy of the Subscriber to which the DataReader belongs has the access_scope set to "GROUP". In the aforementioned case, the operation must be called prior to calling any of the sample-accessing operations, i.e. read and take on DataReader. Otherwise the sample-accessing operations will throw a PreconditionNotMetError exception.
Once the application has finished accessing the data samples it must end the coherent access. It is not required for the application to begin or end access if the Presentation QosPolicy has the access_scope set to something other than GROUP. Beginning or ending access in this case is not considered an error and has no effect. Beginning and ending access may be nested. In that case, the application end access as many times as it began access.
Definition at line 94 of file CoherentAccess.hpp.
|
explicit |
Creating a CoherentAccess object, which will begin ‘coherent access’ of received samples using DataReader objects attached to this Subscriber.
sub | The Subscriber to begin the coherent access on. |
dds::core::Error | An internal error has occurred. |
dds::core::AlreadyClosedError | The Subscriber has already been closed. |
dds::core::NotEnabledError | The Subscriber has not yet been enabled. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NullReferenceError | The Subscriber was not properly created and references to dds::core::null. |
dds::sub::CoherentAccess::~CoherentAccess | ( | ) |
The destruction of the CoherentAccess will implicitly end the coherent access if not already ended by a call to end().
When there is a problem with which end() would normally throw an exception, then that exception is swallowed. Errors can be found in the logs.
void dds::sub::CoherentAccess::end | ( | ) |
This operation will explicitly end the coherent access.
If the Subscriber already ended its coherent access (by a call to this very operation), then a call to this operation will have no effect.
dds::core::Error | An internal error has occurred. |
dds::core::AlreadyClosedError | The Subscriber has already been closed. |
dds::core::NotEnabledError | The Subscriber has not yet been enabled. |
dds::core::NullReferenceError | The Subscriber was not properly created and references to dds::core::null. |
|
inherited |
Compare this Value with another Value
other | Value |
|
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 Value 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 Value and on all its subclasses as follows:
|
inherited |
Compare this Value with another Value
other | Value |