我通过下面的“生产者”从外部套接字连接获取数据。
我将数据放入 aBlockingCollection
中,然后由消费者读取。如果消费者在固定期限内没有收到数据,它无论如何都会触发,这样 my ProcessDataOnGrid
, 就会在数据到达时或至少在 x 毫秒后执行某些操作。
问题是我已经读过这BlockingCollection
是首选的方法,但是看起来很慢。
从获取外部数据到调用ProcessDataOnGrid
. 我是否使用不正确,还是有更好的方法来等待数据但仅在固定的时间段内?
public BlockingCollection<TickRecord> trPipe = new BlockingCollection<TickRecord>();
制片人:
public void ProcessMarketData(string key, string intraMessage)
{
//////////
// Gets External data from intraMessage
////////////
try
{
if (GRID!=null)
{
TickRecord tr = new TickRecord(intraMessage);
while ( ! AddToFeedPipe(key, tr) )
{
Thread.Sleep(1000);
}
}
}
catch (Exception e)
{
}
}
}
public bool AddToFeedPipe(string key, TickRecord tr)
{
try
{
foreach (var s in cReader.STREAMS)
{
if (s.key == key)
{
s.trPipe.Add(tr);
return true;
}
}
return false;
}
catch (Exception)
{
return false;
}
}
消费者:
public void Read()
{
DateTime DTNOW = DateTime.UtcNow;
TimeSpan gridNextTS = G.gridNextDT.Subtract(DTNOW);
try
{
if (trPipe.TryTake(out tr,gridNextTS) == false)
{
tr = trGAP;
}
else if (tr == null)
{
EOF = true;
return;
}
ProcessDataOnGrid(tr);
}
catch (Exception e)
{
tr = null;
EOF = true;
return;
}
}