本文整理汇总了C#中System.Int32.clear方法的典型用法代码示例。如果您正苦于以下问题:C# Int32.clear方法的具体用法?C# Int32.clear怎么用?C# Int32.clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Int32
的用法示例。
在下文中一共展示了Int32.clear方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: selectEx
public int selectEx(ref UDTSOCKET[] fds, ref UDTSOCKET[] readfds, ref UDTSOCKET[] writefds, ref UDTSOCKET[] exceptfds, Int64 msTimeOut)
{
Int64 entertime = CClock.getTime();
Int64 to;
if (msTimeOut >= 0)
to = msTimeOut * 1000;
else
to = 0xFFFFFFFFFFFFFFFF;
// initialize results
int count = 0;
if (null != readfds)
readfds.clear();
if (null != writefds)
writefds.clear();
if (null != exceptfds)
exceptfds.clear();
do
{
//for (vector<UDTSOCKET>::const_iterator i = fds.begin(); i != fds.end(); ++ i)
foreach (UDTSOCKET i in fds)
{
UdtSocket s = locate(i);
if ((null == s) || s.m_pUDT.m_bBroken || (s.m_Status == UDTSTATUS.CLOSED))
{
if (null != exceptfds)
{
exceptfds.push_back(i);
++count;
}
continue;
}
if (null != readfds)
{
if ((s.m_pUDT.m_bConnected && (s.m_pUDT.m_pRcvBuffer.getRcvDataSize() > 0) && ((s.m_pUDT.m_iSockType == UDT_STREAM) || (s.m_pUDT.m_pRcvBuffer.getRcvMsgNum() > 0)))
|| (s.m_pUDT.m_bListening && (s.m_pQueuedSockets.size() > 0)))
{
readfds.push_back(s.m_SocketID);
++count;
}
}
if (null != writefds)
{
if (s.m_pUDT.m_bConnected && (s.m_pUDT.m_pSndBuffer.getCurrBufSize() < s.m_pUDT.m_iSndBufSize))
{
writefds.push_back(s.m_SocketID);
++count;
}
}
}
if (count > 0)
break;
CClock.waitForEvent();
} while (to > CClock.getTime() - entertime);
return count;
}