#include <CoherentSet.hpp>
Inheritance diagram for CoherentSet< DELEGATE >:Public Member Functions | |
| CoherentSet (const dds::pub::Publisher &pub) | |
| CoherentSet (const CoherentSet &src) | |
| void | end () |
| ~CoherentSet () | |
Definition at line 28 of file CoherentSet.hpp.
| CoherentSet | ( | const dds::pub::Publisher & | pub | ) | [inline, explicit] |
This operation requests that the application will begin a coherent set of modifications using DataWriter objects attached to the Publisher. The coherent set will be completed by a matching call to end. A coherent set is a set of modifications that must be propagated in such a way that they are interpreted at the receivers' side as a consistent set of modifications; that is, the receiver will only be able to access the data after all the modifications in the set are available at the receiver end. A connectivity change may occur in the middle of a set of coherent changes; for example, the set of partitions used by the Publisher or one of its Subscribers may change, a late-joining DataReader may appear on the network, or a communication failure may occur. In the event that such a change prevents an entity from receiving the entire set of coherent changes, that entity must behave as if it had received none of the set. These calls can be nested. In that case, the coherent set terminates only with the last call to end. The support for coherent changes enables a publishing application to change the value of several data-instances that could belong to the same or different topics and have those changes be seen atomically by the readers. This is useful in cases where the values are inter-related. For example, if there are two data instances representing the altitude and velocity vector of the same aircraft and both are changed, it may be useful to communicate those values in a way the reader can see both together; otherwise, it may e.g., erroneously interpret that the aircraft is on a collision course.
Definition at line 61 of file CoherentSet.hpp.
| CoherentSet | ( | const CoherentSet< DELEGATE > & | src | ) |
| ~CoherentSet | ( | ) |
This operation terminates the coherent set initiated by the constructor.
| void end | ( | ) | [inline] |
This operation terminates the coherent set initiated by the constructor. If there is no matching call to the constructor, the operation will raise the PreconditionNotMetError.
Definition at line 70 of file CoherentSet.hpp.
1.7.1