Field Name | Description | Related BrokerEvent Methods |
title | The string value. | getStringValue setStringValue |
seqA | The entire sequence of float values. | getSequenceField setSequenceField |
seqA[0] | First float value in seqA | getFloatField setFloatField |
seqA[] | Used to obtain the field's type when the number of elements in the sequence is not known. | getFieldType |
seqB[0][0] | First int value in seqB. | getIntField setIntField |
seqB[][] | Used to obtain the field's type when the number of elements in the sequence is not known. | getFieldType |
structA | The entire structA structure. | getStructFieldAsEvent setStructFieldFromEvent |
structA.date | BrokerDate value within structA. | getDateField setDateField |
structA.seqC[0][0] | First int value in seqC, within structA. | getIntegerField setIntegerField |
structA.seqC[][] | Used to obtain the field's type when the number of elements in the sequence is not known. | getFieldType |
structB | The entire structB structure. | getStructFieldAsEvent setStructFieldFromEvent |
structB.time | BrokerDate within structB. | getDateField setDateField |
structB.emp | The structure within structB. | getStructFieldAsEvent setStructFieldFromEvent |
structB.emp.name | The string within the emp structure, within structB. | getStringField setStringField |
structC | The entire structure sequence structC. | getStructSeqFieldAsEvents setStructSeqFieldFromEvents |
structC[0].date | BrokerDate within the first structure in the structC sequence. | getDateField setDateField |
structC[].date | Used to obtain the field's type when the number of elements in the sequence structC is not known. | getFieldType |
structC[0].seqD[0][0] | First int value in seqD, within the first structure in the structC sequence. | getIntegerField setIntegerField |
structC[].seqD[][] | Used to obtain the field's type when the number of elements in the sequences structC and seqD are not known. | getFieldType |