Category Description
Index Name.
Category Identification
| pNxCoreMessage->coreData.Category.pnxStringCategory->Atom | 7 |
| pNxCoreMessage->coreData.Category.pnxStringCategory->String | IndexSymbolInfo |
Update Time and Frequency
| Approximate Time | Info |
|---|---|
| 00:00 AM | Information from previous session |
| 05:15 AM | Current session information |
| No Updates | No updates throughout the day |
Category Fields | 1
| Index | FieldName | FieldType | C Code | Info |
|---|---|---|---|---|
| 0 | Name | NxCFT_STRINGZ | pnxFields[0].data.StringZ | Name of index |
Code Sample from CategoryDumper project:
void onNxCoreCategory_7(const NxCoreMessage *pNxCoreMsg)
{
NxCategoryField *pField;
// Print the category num and the Symbol
PrintSymbol(pNxCoreMsg);
pField=&pNxCoreMsg->coreData.Category.pnxFields[0];
if (pField->Set)
printf("Index Name: %s \n",
pField->data.StringZ);
}