Sequence Entries

Imported from previous forum

according to QuickFast a sequence is a vector and the entry is a FieldSet so my question is: does all entries have the same fields in their fieldset ? I mean are they all alike? I mean after reading technical spec of FAST it’s obvious that they all have the same structure but in the QuickFast lib specificly in the sequence header they doesn’t require the same structure as old inserted entry:
/// @brief Add a new group to the sequence
void addEntry(FieldSetCPtr fieldSet)
{
entries_.push_back(fieldSet);
}
As you can see I can insert another fieldset in my sequence which differ from the structure of the entry that I specified in my spec ? so any clarification please ?

Hi Hajer,

I just noticed this message from a couple of months ago on the FIX mailing list. This is the wrong forum for the question which is probably why you did not receive any answers. If you still need an answer, please ask on the QuickFAST mailing list:

https://groups.google.com/forum/?fromgroups#!forum/quickfast_users

Dale

according to QuickFast a sequence is a vector and the entry is a FieldSet so my question is: does all entries have the same fields in their fieldset ? I mean are they all alike? I mean after reading technical spec of FAST it’s obvious that they all have the same structure but in the QuickFast lib specificly in the sequence header they doesn’t require the same structure as old inserted entry:
/// @brief Add a new group to the sequence
void addEntry(FieldSetCPtr fieldSet)
{
entries_.push_back(fieldSet);
}
As you can see I can insert another fieldset in my sequence which differ from the structure of the entry that I specified in my spec ? so any clarification please ?