It is recommneded that a Message type do not have significant dtor defined because the message could travel through process bundaries or through network
won't compile if trying to send them. The only exception is the BlockingContext (licensed package), which does allow message's dtors and call them properly within a process boundary.
struct Finish
: hasTag<1004> {
Finish(uint16_t srcId)
: srcId(srcId)
{}
uint16_t srcId;
};
The documentation for this class was generated from the following file: