OpenHiva::HivaMessageTraits

The OpenHiva::HivaMessageTraits structure is used to describe message attributes. Each OpenHiva::HivaMessage has a corresponding MessageTraits.
1
2
3
4
5
6
struct OpenHiva::HivaMessageTraits {
    std::string md5sum;            
    std::string dataType;
    bool hasHeader;
    std::string msgDef;
};
  • md5sum: MD5 value of a message.
  • datatype: message type.
  • hasHeader: indicates whether a message has a header.
  • msgDef: message definition that describes the message type.