本文整理汇总了C#中Wombat.MamaMsg.getI32方法的典型用法代码示例。如果您正苦于以下问题:C# MamaMsg.getI32方法的具体用法?C# MamaMsg.getI32怎么用?C# MamaMsg.getI32使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Wombat.MamaMsg
的用法示例。
在下文中一共展示了MamaMsg.getI32方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: getEntries
private void getEntries(
MamdaOrderBookPriceLevel level,
MamaMsg plMsg)
{
/* Entries may or may not exist in the message. If they do exist,
* they exist as a vector of submessages, separate submessages, or
* (if there is only one entry in the message) in the price level
* message itself. */
/* Optional order book fields: */
MamaMsg[] msgEntries = null;
/*We won't have PL_ENTRIES if FieldAttrsOrderBookWombatMsg
is not specified in the data dictionary*/
if (MamdaOrderBookFields.PL_ENTRIES != null)
{
/* null is passed as default value otherwise
getVectorMsg throws an exception if not found*/
msgEntries = plMsg.getVectorMsg(MamdaOrderBookFields.PL_ENTRIES, null);
}
if (msgEntries != null)
{
MamdaOrderBookEntry[] entries = new MamdaOrderBookEntry[msgEntries.Length];
for (int j = 0; j < msgEntries.Length; j++)
{
MamaMsg entMsg = msgEntries[j];
if (entMsg != null)
{
MamdaOrderBookEntry entry = new MamdaOrderBookEntry();
getEntryInfo(entry, entMsg, level);
level.addEntry(entry);
}
}
return;
}
/* Second, try the list of entries. */
int maxEntryFields = MamdaOrderBookFields.PL_ENTRY.Length;
// Get the number of attached sub messages
int numEntryAttached = plMsg.getI32(MamdaOrderBookFields.PL_NUM_ATTACH, 0);
// If there are no sub messages attempt to get the entry Id from this price level message
if (0 == numEntryAttached)
{
string entID = null;
// Check for the entry Id
if (plMsg.tryString(MamdaOrderBookFields.ENTRY_ID, ref entID))
{
// Add a new entry to the level
MamdaOrderBookEntry entry = new MamdaOrderBookEntry();
getEntryInfo(entry, plMsg, level);
level.addEntry(entry);
}
}
else
{
// Ensure we dont' enumerate beyond the maximum number of entries
if (numEntryAttached < maxEntryFields)
{
maxEntryFields = numEntryAttached;
}
// Enumerate all the entries
for (int j = 1; j <= maxEntryFields; j++)
{
// Get the sub message
MamaMsg entMsg = plMsg.getMsg(MamdaOrderBookFields.PL_ENTRY[j], null);
if (entMsg != null)
{
// Add an entry for this level
MamdaOrderBookEntry entry = new MamdaOrderBookEntry();
getEntryInfo(entry, entMsg, level);
level.addEntry(entry);
}
}
}
}
示例2: getLevelInfoAndEntries
//.........这里部分代码省略.........
// price level action is an add should the number of
// entries match.
//
if (mLevelEntryHandler!=null)
{
// clear entry cache
clearLevelEntryFields();
// First try a single vector.
int numEntriesInMsg = 0;
MamaMsg[] msgEntries = null;
/* We won't have PL_ENTRIES if FieldAttrsOrderBookWombatMsg
* is not specified in the data dictionary */
if (MamdaOrderBookFields.PL_ENTRIES != null)
{
/* null is passed as default value otherwise
* getVectorMsg throws an exception if not found */
msgEntries = plMsg.getVectorMsg(MamdaOrderBookFields.PL_ENTRIES, null);
if (msgEntries != null)
{
numEntriesInMsg = msgEntries.Length;
}
}
if (numEntriesInMsg > 0)
{
mPriceLevelActNumEntries = numEntriesInMsg;
for (int j = 0; j < numEntriesInMsg; j++)
{
entMsg = msgEntries[j];
getEntriesInfo(entMsg);
if (isRecap)
{
mLevelEntryHandler.onBookAtomicLevelEntryRecap (
subscription, this, msg, this);
}
else
{
mLevelEntryHandler.onBookAtomicLevelEntryDelta (
subscription, this, msg, this);
}
}
}
else
{
// Second, try the list of entries.
int maxEntryFields = MamdaOrderBookFields.getNumEntryFields ();
// getNumEntryFields() defaults to 0 but we want to go into the
// below loop at least once for flattened messages scenario
if (maxEntryFields == 0)
{
maxEntryFields = 1;
}
int numEntryAttached = plMsg.getI32(MamdaOrderBookFields.PL_NUM_ATTACH, 1);
if (numEntryAttached < maxEntryFields)
{
maxEntryFields = numEntryAttached;
}
mPriceLevelActNumEntries = maxEntryFields;
for (int j = 1; j <= maxEntryFields; j++)
{
if (MamdaOrderBookFields.PL_ENTRY.Length > 1)
{
entMsg = plMsg.getMsg(MamdaOrderBookFields.PL_ENTRY[j], null);
}
if ((entMsg == null) && (numEntryAttached == 1))
{
// Price level fields are probably be in the main message.
entMsg = plMsg;
}
if (entMsg != null)
{
if (!getEntriesInfo(entMsg))
{
return;
}
if (isRecap)
{
mLevelEntryHandler.onBookAtomicLevelEntryRecap (
subscription, this, msg, this);
}
else
{
mLevelEntryHandler.onBookAtomicLevelEntryDelta (
subscription, this, msg, this);
}
}
}
}
}
}