本文整理汇总了C#中Wombat.MamaMsgField.getFid方法的典型用法代码示例。如果您正苦于以下问题:C# MamaMsgField.getFid方法的具体用法?C# MamaMsgField.getFid怎么用?C# MamaMsgField.getFid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Wombat.MamaMsgField
的用法示例。
在下文中一共展示了MamaMsgField.getFid方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: displayField
private void displayField(MamaMsgField field)
{
Console.Write(String.Format("{0,20}{1,20}{2,20}",
field.getName(),
field.getFid(),
field.getTypeName()));
/*
The most efficient way of extracting data while iterating
fields is to obtain the field type and then call the
associated strongly-typed accessor.
MamaMsgField.getAsString() will return a string version
of the data but is considerably less efficient and is not
recommended for production use.
*/
switch(field.getType())
{
case mamaFieldType.MAMA_FIELD_TYPE_MSG:
MamaMsg myMsg = field.getMsg();
Console.WriteLine(" {");
displayAllFields(myMsg);
Console.WriteLine("}");
break;
default:
Console.WriteLine(String.Format("{0,20}",field.getAsString()));
break;
}
}
示例2: onField
public void onField(
MamaMsg msg,
MamaMsgField field,
Object closure)
{
try
{
int fieldId = field.getFid();
if (fieldId <= mMaxFid)
{
TradeUpdate updater = MamdaTradeListener.mUpdaters[fieldId];
if (updater != null)
{
updater.onUpdate(mListener, field);
}
}
}
catch (Exception ex)
{
throw new MamdaDataException(ex.Message, ex);
}
}
示例3: onField
public void onField(
MamaMsg msg,
MamaMsgField field,
object closure)
{
try
{
int fieldId = field.getFid();
if (fieldId <= mMaxFid)
{
SecurityStatusUpdate updater = (SecurityStatusUpdate)mUpdaters[fieldId];
if (updater != null)
{
updater.onUpdate(mListener, field);
}
}
}
catch (Exception ex )
{
throw new MamdaDataException(ex.Message);
}
}
示例4: onField
public void onField(
MamaMsg msg,
MamaMsgField field,
object closure)
{
try
{
int fieldId = field.getFid();
if (fieldId <= mMaxFid)
{
ImbalanceOrderUpdate updater = (ImbalanceOrderUpdate)mUpdaters[fieldId];
if (updater != null)
{
updater.onUpdate(mListener, field);
}
}
}
catch (Exception ex )
{
throw new MamaException(MamaStatus.mamaStatus.MAMA_STATUS_PLATFORM, ex.Message);
}
}
示例5: displayField
/// <summary>
/// Display the contents of a field in the console window.
/// </summary>
/// <param name="field">
/// The field to display.
/// </param>
/// <param name="indent">
/// The level of indent to add before the string for formatting purposes.
/// </param>
internal void displayField(MamaMsgField field, int indent)
{
// Format a log string
string logMessage = "";
string indentSpacer = " ";
for (int i = 0; i < indent; i++)
indentSpacer += " ";
if (m_quietness < 1)
{
logMessage = string.Format(
"{0}{1, -20 } |{2,5} | {3, 10} | ",
indentSpacer,
field.getName(),
field.getFid(),
field.getTypeName());
}
mamaFieldType fieldType = field.getType();
switch (fieldType)
{
case mamaFieldType.MAMA_FIELD_TYPE_MSG:
{
MamaMsg tmpMsg = field.getMsg();
Console.WriteLine(logMessage);
Console.WriteLine(indentSpacer + "{");
if (!(m_iterator))
{
tmpMsg.iterateFields(this, m_dictionary, indent + 1);
}
else
{
MamaMsgIterator subIterator = new MamaMsgIterator(m_dictionary);
MamaMsgField subField;
tmpMsg.begin(ref subIterator);
while ((subField = subIterator.getField()) != null)
{
displayField(subField, indent + 1);
subIterator++;
}
}
Console.WriteLine(indentSpacer + "}");
}
break;
case mamaFieldType.MAMA_FIELD_TYPE_VECTOR_MSG:
{
MamaMsg[] tmpMsgarray = field.getVectorMsg();
foreach (MamaMsg tmpMsg in tmpMsgarray)
{
Console.WriteLine(logMessage);
Console.WriteLine(indentSpacer + "{");
if (!(m_iterator))
{
tmpMsg.iterateFields(this, m_dictionary, indent + 1);
}
else
{
MamaMsgIterator subIterator = new MamaMsgIterator(m_dictionary);
MamaMsgField subField;
tmpMsg.begin(ref subIterator);
while ((subField = subIterator.getField()) != null)
{
displayField(subField, indent + 1);
subIterator++;
}
}
Console.WriteLine(indentSpacer + "}");
}
}
break;
case mamaFieldType.MAMA_FIELD_TYPE_STRING:
logMessage += field.getString();
break;
case mamaFieldType.MAMA_FIELD_TYPE_BOOL:
if (m_quietness < 1)
logMessage += field.getBool().ToString();
else
logMessage += field.getBool();
break;
case mamaFieldType.MAMA_FIELD_TYPE_CHAR:
if (m_quietness < 1)
logMessage += field.getChar().ToString();
else
logMessage += field.getChar();
break;
case mamaFieldType.MAMA_FIELD_TYPE_I8:
if (m_quietness < 1)
logMessage += field.getI8().ToString();
//.........这里部分代码省略.........