Sequencer¶
[req.sequencer]
A type S satisfies the Sequencer if it meets the following requirements:
Sequencer Requirements: Pseudo-Signature, Semantics
-
S::~S()¶ Destructor.
-
void
operator=(const S&)¶ Assignment. The return type
voidin the pseudo-signature denotes thatoperator=is not required to return a value. The actualoperator=can return a value, which will be ignored.
-
size_t
S::operator()(const T &v)¶ Requirements: The type
Tmust be the same as template type argumentTof thesequencer_nodeinstance in whichSobject is passed during construction.Returns the sequence number for the provided message
v.
See also: